fix: switch version of linux kernel to avoid errors

This commit is contained in:
Kiana Sheibani 2025-10-22 13:05:29 -04:00
parent 524292401c
commit 9afcb20494
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -4,6 +4,8 @@
hardware.enableRedistributableFirmware = true;
hardware.enableAllFirmware = true;
hardware.microsoft-surface.kernelVersion = "stable";
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
@ -24,7 +26,6 @@
[ { device = "/dev/disk/by-uuid/3a81bb60-49e4-41fc-8716-8db7dd5f698f"; }
];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
virtualisation.hypervGuest.enable = true;
}