diff options
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/default.nix | 2 | ||||
-rw-r--r-- | profiles/hardware/amd.nix | 6 | ||||
-rw-r--r-- | profiles/hardware/intel.nix | 5 | ||||
-rw-r--r-- | profiles/hardware/xps9300.nix | 12 |
4 files changed, 25 insertions, 0 deletions
diff --git a/profiles/default.nix b/profiles/default.nix index 7a2e6af..31e044a 100644 --- a/profiles/default.nix +++ b/profiles/default.nix @@ -8,6 +8,8 @@ security.sudo.wheelNeedsPassword = false; security.polkit.enable = true; + services.fstrim.enable = true; + programs.ssh = { # $ ssh-keyscan example.com knownHosts = { diff --git a/profiles/hardware/amd.nix b/profiles/hardware/amd.nix new file mode 100644 index 0000000..dc933ee --- /dev/null +++ b/profiles/hardware/amd.nix @@ -0,0 +1,6 @@ +{ ... }: +{ + hardware.cpu.amd.updateMicrocode = true; + boot.kernelModules = [ "kvm-amd" "k10temp" ]; + boot.kernelParams = [ "amd_pstate=passive" ]; +} diff --git a/profiles/hardware/intel.nix b/profiles/hardware/intel.nix new file mode 100644 index 0000000..756ad9a --- /dev/null +++ b/profiles/hardware/intel.nix @@ -0,0 +1,5 @@ +{ ... }: +{ + hardware.cpu.intel.updateMicrocode = true; + boot.kernelModules = [ "kvm-intel" ]; +} diff --git a/profiles/hardware/xps9300.nix b/profiles/hardware/xps9300.nix new file mode 100644 index 0000000..3e58c88 --- /dev/null +++ b/profiles/hardware/xps9300.nix @@ -0,0 +1,12 @@ +{ ... }: +{ + imports = [ + ./intel.nix + ]; + + boot.kernelParams = [ "mem_sleep_default=deep" ]; + + networking.wireless.iwd.enable = true; + hardware.bluetooth.enable = true; + services.blueman.enable = true; +} |