infrastructure/systems/kuwubernetes/default.nix
2024-06-01 11:25:08 -07:00

28 lines
469 B
Nix

_: {
arch = "x86_64";
type = "NixOS";
modules = [
./nixos.nix
];
ci.allowFailure = true;
access.online.enable = false;
proxmox = {
vm = {
id = 201;
enable = true;
};
network.interfaces = {
net0 = {
mdns.enable = false;
name = "ens18";
macAddress = "BC:24:11:49:FE:DC";
address4 = "10.1.1.42/24";
address6 = "auto";
};
};
};
exports = {
services = {
};
};
}