infrastructure/systems/minecraft/proxmox.nix
2024-09-16 18:23:37 -07:00

18 lines
345 B
Nix

_: {
proxmox = {
vm.id = 106;
container = {
enable = true;
lxc.configJsonFile = ./lxc.json;
};
network.interfaces = {
net0 = {
mdns.enable = true;
macAddress = "BC:24:11:C4:66:AB";
address4 = "dhcp";
address6 = "auto";
};
net1.internal.enable = true;
};
};
}