infrastructure/systems/tei/proxmox.nix
2024-03-29 15:24:43 -07:00

23 lines
453 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";
};
net1.internal.enable = true;
};
};
network.networks = {
tail = {
address4 = "100.74.104.29";
address6 = "fd7a:115c:a1e0::fd8a:681d";
};
};
}