infrastructure/systems/freepbx/default.nix
2024-04-16 03:07:39 -07:00

26 lines
433 B
Nix

_: {
type = "Linux";
proxmox = {
vm = {
id = 203;
enable = true;
};
network.interfaces = {
net0 = {
name = "ens18";
macAddress = "BC:24:11:33:19:04";
address4 = "dhcp";
address6 = "auto";
};
};
};
exports = {
services = {
sshd = {
enable = true;
ports.public.enable = false;
};
freepbx.enable = true;
};
};
}