infrastructure/systems/minecraft/proxmox.nix
2024-09-19 13:10:12 -07:00

17 lines
318 B
Nix

_: {
proxmox = {
vm.id = 109;
container = {
enable = true;
lxc.configJsonFile = ./lxc.json;
};
network.interfaces = {
net0 = {
mdns.enable = true;
macAddress = "BC:24:11:C4:66:AD";
address4 = "10.1.1.51/24";
address6 = "auto";
};
};
};
}