forgejo-ci-runners/hardware/shadowfax-kubevirt.nix

13 lines
326 B
Nix
Raw Normal View History

2024-05-23 14:50:32 -05:00
{ config, modulesPath, lib, ... }:
{
imports = [
"${modulesPath}/profiles/qemu-guest.nix"
];
2024-05-25 10:46:46 -05:00
config = {
networking.useDHCP = true;
2024-05-25 10:50:06 -05:00
boot.initrd.availableKernelModules = [ "ahci" "virtio_pci" "virtio_scsi" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.extraModulePackages = [];
2024-05-23 14:50:32 -05:00
};
}