9 lines
211 B
Nix
9 lines
211 B
Nix
{ modulesPath, ... }: {
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" ];
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
}
|
|
|