mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
24 lines
479 B
Nix
24 lines
479 B
Nix
_: {
|
|
proxmox = {
|
|
vm.id = 104;
|
|
container = {
|
|
enable = true;
|
|
privileged = true;
|
|
lxc.configJsonFile = ./lxc.json;
|
|
};
|
|
network.interfaces = {
|
|
net0 = {
|
|
macAddress = "BC:24:11:C4:66:A8";
|
|
address4 = "10.1.1.45/24";
|
|
address6 = "auto";
|
|
};
|
|
net1.internal.enable = true;
|
|
};
|
|
};
|
|
network.networks = {
|
|
tail = {
|
|
address4 = "100.113.253.48";
|
|
address6 = "fd7a:115c:a1e0::f1b1:fd30";
|
|
};
|
|
};
|
|
}
|