Replace hardware configuration file

This commit is contained in:
coolneng 2021-08-13 09:48:33 +01:00
parent fa1ec47778
commit f6b602349b
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
@ -33,7 +33,7 @@
fsType = "autofs"; fsType = "autofs";
}; };
fileSystems."/home" = fileSystems."/home/coolneng" =
{ device = "syscea/stateful/home"; { device = "syscea/stateful/home";
fsType = "zfs"; fsType = "zfs";
}; };
@ -49,12 +49,12 @@
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/4AED-6F54"; { device = "/dev/disk/by-uuid/4851-6B40";
fsType = "vfat"; fsType = "vfat";
}; };
swapDevices = swapDevices =
[ { device = "/dev/disk/by-uuid/3403dce5-dfd2-42bc-9b38-58995c3fb93a"; } [ { device = "/dev/disk/by-uuid/c8e252ac-941f-4290-8212-42c1bc2bff69"; }
]; ];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";