diff options
Diffstat (limited to 'hosts/apzu/hardware/default.nix')
-rw-r--r-- | hosts/apzu/hardware/default.nix | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/hosts/apzu/hardware/default.nix b/hosts/apzu/hardware/default.nix deleted file mode 100644 index 2cbf3254..00000000 --- a/hosts/apzu/hardware/default.nix +++ /dev/null @@ -1,31 +0,0 @@ -{modulesPath, ...}: { - imports = [ - (modulesPath + "/installer/scan/not-detected.nix") # TODO: is this necessary? - ./cpu.nix - ./gpu.nix - ]; - - nixpkgs.hostPlatform = "x86_64-linux"; - - hardware.bluetooth = { - enable = true; - # Avoid some battery drain, requires a `power on` in bluetoothctl - powerOnBoot = false; - }; - - 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"; - }; - }; - - boot = { - kernelModules = ["kvm-intel" "rtw89"]; - - initrd.availableKernelModules = ["xhci_pci" "vmd" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"]; - }; -} |