about summary refs log tree commit diff stats
path: root/hosts/apzu
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-07-05 16:25:36 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-07-05 19:43:07 +0200
commitfd9ed4e5e826674131f4887853150d3795dd222f (patch)
tree17998feba0df8ff1ab2f2c4a8bcac270a37ceda6 /hosts/apzu
parentbuild(treewide): Update (diff)
downloadnixos-config-fd9ed4e5e826674131f4887853150d3795dd222f.tar.gz
nixos-config-fd9ed4e5e826674131f4887853150d3795dd222f.zip
refactor(hosts): Also move bluetooth and graphics to separate modules
Diffstat (limited to 'hosts/apzu')
-rw-r--r--hosts/apzu/default.nix4
-rw-r--r--hosts/apzu/hardware.nix53
2 files changed, 19 insertions, 38 deletions
diff --git a/hosts/apzu/default.nix b/hosts/apzu/default.nix
index 5b3d23f8..2d26b27b 100644
--- a/hosts/apzu/default.nix
+++ b/hosts/apzu/default.nix
@@ -18,11 +18,15 @@
       backlight = "intel_backlight";
     };
     locale.enable = true;
+
     networking = {
       enable = true;
       mode = "NetworkManager";
       hostName = "apzu";
     };
+    bluetooth = {
+      enable = true;
+    };
     nixpkgs = {
       enable = true;
       systemName = "x86_64-linux";
diff --git a/hosts/apzu/hardware.nix b/hosts/apzu/hardware.nix
index 29223e29..ae204baa 100644
--- a/hosts/apzu/hardware.nix
+++ b/hosts/apzu/hardware.nix
@@ -1,19 +1,22 @@
-{
-  modulesPath,
-  pkgs,
-  ...
-}: {
+{modulesPath, ...}: {
   imports = [
     (modulesPath + "/installer/scan/not-detected.nix") # TODO: is this necessary?
   ];
 
-  soispha.disks = {
-    enable = true;
-    disk = "/dev/disk/by-id/nvme-INTEL_SSDPEKNU512GZH_PHKA1481032A512A_1";
-    ssd = true;
-    swap = {
-      uuid = "c94cd20a-dd3c-436f-9841-6fe92e5c8719";
-      resumeOffset = "533760";
+  soispha = {
+    disks = {
+      enable = true;
+      disk = "/dev/disk/by-id/nvme-INTEL_SSDPEKNU512GZH_PHKA1481032A512A_1";
+      ssd = true;
+      swap = {
+        uuid = "c94cd20a-dd3c-436f-9841-6fe92e5c8719";
+        resumeOffset = "533760";
+      };
+    };
+
+    hardware = {
+      enable = true;
+      cpuType = "intel";
     };
   };
 
@@ -22,30 +25,4 @@
 
     initrd.availableKernelModules = ["xhci_pci" "vmd" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"];
   };
-
-  hardware = {
-    bluetooth = {
-      enable = true;
-      # Avoid some battery drain, requires a `power on` in bluetoothctl
-      powerOnBoot = false;
-    };
-
-    #   opengl.extraPackages = with pkgs; [
-    #     rocm-opencl-icd # open-cl
-    #     amdvlk # or directly through mesa
-    #     amd-media-driver # libva
-    #   ];
-    #
-    #   # Force radv, TODO: is this logical?
-    #   environment.variables.AMD_VULKAN_ICD = "RADV";
-
-    cpu.intel.updateMicrocode = true; # Why not?
-    opengl = {
-      enable = true;
-      extraPackages = with pkgs; [
-        vaapiVdpau
-        libvdpau-va-gl
-      ];
-    };
-  };
 }