1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/hosts/emilia/hardware-configuration.nix
2024-06-12 16:22:17 +02:00

9 lines
211 B
Nix

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