about summary refs log tree commit diff
path: root/profiles
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-02 17:50:50 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-02 17:50:50 -0700
commit80b2a5ed2cf30c66ec75480c24c53c7b329c3381 (patch)
tree11c574af791e9a71ec39b03ffa682b58584bf796 /profiles
parentprofiles/default: move default packages there (diff)
downloadworld-80b2a5ed2cf30c66ec75480c24c53c7b329c3381.tar.gz
profiles/hardware: create a few profiles related to hardware
Diffstat (limited to '')
-rw-r--r--profiles/default.nix2
-rw-r--r--profiles/hardware/amd.nix6
-rw-r--r--profiles/hardware/intel.nix5
-rw-r--r--profiles/hardware/xps9300.nix12
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;
+}