forked from emily/nixfiles
10 lines
280 B
Nix
10 lines
280 B
Nix
{ config, lib, pkgs, modulesPath, ... }: {
|
|
imports =
|
|
[ (modulesPath + "/profiles/qemu-guest.nix")
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_scsi" ];
|
|
boot.initrd.kernelModules = [ ];
|
|
boot.kernelModules = [ ];
|
|
boot.extraModulePackages = [ ];
|
|
}
|