forgejo-ci-runners/hardware/shadowfax-kubevirt.nix
2024-05-25 10:50:06 -05:00

13 lines
No EOL
326 B
Nix

{ config, modulesPath, lib, ... }:
{
imports = [
"${modulesPath}/profiles/qemu-guest.nix"
];
config = {
networking.useDHCP = true;
boot.initrd.availableKernelModules = [ "ahci" "virtio_pci" "virtio_scsi" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.extraModulePackages = [];
};
}