Another go at fixing the boot

This commit is contained in:
Nathan McCarty 2025-04-04 19:49:45 -04:00
parent b582a7d707
commit 1414086642

View file

@ -12,8 +12,24 @@
(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod"]; boot.initrd.availableKernelModules = [
boot.initrd.kernelModules = ["dm-snapshot" "cryptd" "pinctrl_icelake" "intel_lpss" "intel_lpss_pci" "surface_aggregator" "surface_aggregator_registry" "surface_aggregator_hub" "surface_hid_core" "8250_dw" "surface_hid"]; "xhci_pci"
"nvme"
"usb_storage"
"sd_mod"
];
boot.initrd.kernelModules = [
"dm-snapshot"
"cryptd"
"intel_lpss"
"intel_lpss_pci"
"pinctrl_icelake"
"8250_dw"
"surface_hid_core"
"surface_hid"
"surface_aggregator_registry"
"surface_aggregator"
];
boot.initrd.luks.devices."crypt".device = "/dev/disk/by-uuid/f16ca8aa-f596-4876-ba82-7427da9afaba"; boot.initrd.luks.devices."crypt".device = "/dev/disk/by-uuid/f16ca8aa-f596-4876-ba82-7427da9afaba";
boot.kernelModules = ["kvm-intel"]; boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = []; boot.extraModulePackages = [];