mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
22 lines
349 B
Nix
22 lines
349 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 = {
|
|
freepbx.enable = true;
|
|
};
|
|
};
|
|
}
|