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

15 lines
342 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
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
2024-05-25 10:46:46 -05:00
swapDevices = [ ];
2024-05-23 14:50:32 -05:00
2024-05-25 10:46:46 -05:00
config = {
networking.useDHCP = true;
2024-05-23 14:50:32 -05:00
};
}