refactor(access): network interface config

This commit is contained in:
arcnmx 2024-03-23 21:13:01 -07:00
parent ee3834d72a
commit f2fddc1001
42 changed files with 466 additions and 189 deletions

17
systems/reimu/proxmox.nix Normal file
View file

@ -0,0 +1,17 @@
_: {
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";
};
};
};
}