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

16 lines
343 B
Nix
Raw Normal View History

2024-05-23 14:50:32 -05:00
{ config, modulesPath, lib, ... }:
{
imports = [
"${modulesPath}/profiles/qemu-guest.nix"
];
config = {
boot.growPartition = true;
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = lib.mkDefault { device = "/dev/vda1"; fsType = "ext4"; };
networking.useNetworkd = true;
networking.useDHCP = false;
};
}