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