new hardware configuration for laptop

This commit is contained in:
Henry Hiles 2026-07-13 01:28:46 +00:00
commit c604a4163a

View file

@ -6,7 +6,6 @@
"ahci" "ahci"
"nvme" "nvme"
"usb_storage" "usb_storage"
"usbhid"
"sd_mod" "sd_mod"
]; ];
kernelModules = [ ]; kernelModules = [ ];
@ -17,15 +16,15 @@
fileSystems = { fileSystems = {
"/" = { "/" = {
device = "/dev/disk/by-uuid/f4b1301b-c329-4c3c-9f3a-5584bc22d0c1"; device = "/dev/disk/by-uuid/15598217-e3e1-4922-b336-8e9f62fad939";
fsType = "ext4"; fsType = "ext4";
}; };
"/boot" = { "/boot" = {
device = "/dev/disk/by-uuid/3B50-5881"; device = "/dev/disk/by-uuid/C6EC-B430";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
}; };
}; };
powerManagement.cpuFreqGovernor = "powersave";
hardware.cpu.intel.updateMicrocode = true; hardware.cpu.intel.updateMicrocode = true;
} }