dotfiles/hosts/nixos-desktop/default.nix

92 lines
2.2 KiB
Nix
Raw Normal View History

2021-09-29 13:06:28 +02:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
2022-07-15 13:11:54 +02:00
{ lib
, config
, pkgs
, ...
}: {
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
];
2021-09-29 13:06:28 +02:00
2022-07-15 13:11:54 +02:00
# MY MODULES
my.email = {
enable = true;
passwordFile = ../../secrets/email-desktop.age;
};
2021-09-29 13:06:28 +02:00
# BOOT
boot = {
2021-10-24 17:13:02 +02:00
supportedFilesystems = [ "btrfs" "ntfs" ];
2021-09-29 13:06:28 +02:00
loader = {
grub = {
enable = true;
version = 2;
device = "nodev";
efiSupport = true;
useOSProber = true;
};
efi.canTouchEfiVariables = true;
};
};
# NETWORKING
networking = {
hostName = "nixos-desktop";
defaultGateway = "192.168.0.1";
nameservers = [ "192.168.0.4" ];
2021-09-29 13:06:28 +02:00
useDHCP = false;
2022-02-11 22:21:04 +01:00
interfaces.enp42s0 = {
2022-07-15 13:11:54 +02:00
ipv4.addresses = [
{
address = "192.168.0.14";
prefixLength = 24;
}
];
ipv6.addresses = [
{
address = "fe80::60fb:ffc:df6f:e29e";
prefixLength = 64;
}
];
2022-02-11 22:21:04 +01:00
};
networkmanager = {
enable = true;
2022-02-11 22:21:04 +01:00
dns = "none";
};
2022-02-11 22:21:04 +01:00
dhcpcd.extraConfig = ''
nohook resolv.conf
'';
2021-09-29 13:06:28 +02:00
};
services.xserver.videoDrivers = [ "nvidia" ];
2021-12-04 11:45:55 +01:00
services.xserver.xrandrHeads = [
{ output = "HDMI-1"; }
{
output = "HDMI-0";
primary = true;
}
];
2022-03-30 10:56:41 +02:00
console.keyMap = "de";
2021-09-29 13:06:28 +02:00
# Powersaving
services.tlp.enable = true;
powerManagement.enable = true;
2022-07-15 10:55:11 +02:00
# sensors
hardware.enableAllFirmware = true;
environment.systemPackages = with pkgs; [ lm_sensors ];
boot.kernelModules = [ "lm92" "drivetemp" ];
2021-09-29 13:06:28 +02:00
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.05"; # Did you read the comment?
}