nix-config/modules/wg/mgmt.nix

49 lines
1.2 KiB
Nix
Raw Normal View History

2025-01-04 21:07:54 +00:00
{ config, ... }:
{
2025-01-11 03:44:38 +01:00
networking.firewall.trustedInterfaces = [ "wg-0xa-mgmt" ];
2025-01-04 21:07:54 +00:00
oxalab.wg = [
{
networkName = "0xa-mgmt";
2025-01-11 03:55:19 +01:00
CIDRs = [
"10.89.87.0/24"
"fd31:185d:722e::/48"
];
2025-01-04 21:07:54 +00:00
hosts = {
"cloud" = {
2025-01-11 03:55:19 +01:00
address = [
"10.89.87.1/24"
"fd31:185d:722e::1/48"
];
2025-01-04 21:07:54 +00:00
publicKey = "zKSaw+SXzWgi/T7ByXHqPk1XNXXapoQYB8UPMTRmhm0=";
privateKeyFile = config.sops.secrets."wg/0xa-mgmt".path;
endpoint = {
enable = true;
endpoint = "188.245.196.27";
port = 51820;
publicIface = "enp1s0";
};
};
"toaster" = {
2025-01-11 03:55:19 +01:00
address = [
"10.89.87.100/24"
"fd31:185d:722e::100/48"
];
2025-01-04 21:07:54 +00:00
publicKey = "H+WeYIBdX7ZHwkgm4BGnF0HF0JULkxyNMcvCviHhmks=";
privateKeyFile = config.sops.secrets."wg/0xa-mgmt".path;
};
"minime" = {
2025-01-11 03:55:19 +01:00
address = [
"10.89.87.10/24"
"fd31:185d:722e::10/48"
];
2025-01-04 21:07:54 +00:00
publicKey = "zN2Dr/ZGMh1Ftparszp22Qnbz2ISJU12iDVatebOHUE=";
privateKeyFile = config.sops.secrets."wg/0xa-mgmt".path;
};
};
}
];
}