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

15 lines
No EOL
342 B
Nix

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