infrastructure/systems/tei/proxmox.nix

16 lines
290 B
Nix

_: {
proxmox = {
vm.id = 101;
container = {
enable = true;
lxc.configJsonFile = ./lxc.json;
};
network.interfaces = {
net0 = {
macAddress = "BC:24:11:CC:66:57";
address4 = "10.1.1.39/24";
address6 = "auto";
};
};
};
}