1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/hosts/emilia/hardware-configuration.nix

10 lines
211 B
Nix
Raw Normal View History

2024-06-12 16:22:17 +02:00
{ modulesPath, ... }: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" ];
boot.kernelModules = [ "kvm-intel" ];
}