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

11 lines
259 B
Nix
Raw Normal View History

2024-06-12 15:00:55 +02:00
{ modulesPath, ... }: {
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
2024-04-29 15:22:48 +02:00
boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_scsi" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
}