nix-infra/config/nixos-generators/proxmox.nix

23 lines
469 B
Nix
Raw Permalink Normal View History

2023-09-16 20:05:33 +02:00
{ ... }:
{
proxmox = {
qemuConf = {
ostype = "l26";
cores = 2;
memory = 1024;
bios = "seabios";
2023-12-05 02:24:50 +01:00
diskSize = "8192";
2023-09-16 20:05:33 +02:00
virtio0 = "local-zfs:base-disk-0,discard=on";
boot = "order=virtio0";
net0 = "tag=999,virtio=00:00:00:00:00:00,bridge=vmbr0,firewall=1";
agent = true;
};
qemuExtraConf = {
cpu = "cputype=host,flags=+aes";
onboot = 1;
machine = "q35";
template = 1;
};
};
}