112 lines
3.3 KiB
Nix
112 lines
3.3 KiB
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
cfg = config.pub-solar.wireguard.pub-solar;
|
|
in {
|
|
options.pub-solar.wireguard.pub-solar = {
|
|
ownIPs = lib.mkOption {
|
|
description = "Internal ips in wireguard used for cluster control-plane communication.";
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [];
|
|
};
|
|
|
|
privateKeyFile = lib.mkOption {
|
|
description = "Location of private key file";
|
|
type = lib.types.path;
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf (lib.length cfg.ownIPs != 0) {
|
|
networking.firewall.allowedUDPPorts = [51821];
|
|
|
|
systemd.network.wait-online.ignoredInterfaces = ["wg-pub-solar"];
|
|
|
|
systemd.services.wireguard-wg-pub-solar = import ./service-override.nix lib;
|
|
|
|
networking.wireguard.interfaces = {
|
|
wg-pub-solar = {
|
|
listenPort = 51821;
|
|
mtu = 1300;
|
|
ips = cfg.ownIPs;
|
|
privateKeyFile = cfg.privateKeyFile;
|
|
peers = [
|
|
{
|
|
endpoint = "nachtigall.pub.solar:51820";
|
|
publicKey = "qzNywKY9RvqTnDO8eLik75/SHveaSk9OObilDzv+xkk=";
|
|
allowedIPs = [
|
|
"10.7.6.1/32"
|
|
"fd00:fae:fae:fae:fae:1::/96"
|
|
];
|
|
persistentKeepalive = 15;
|
|
dynamicEndpointRefreshSeconds = 30;
|
|
}
|
|
{
|
|
endpoint = "flora-6.pub.solar:51820";
|
|
publicKey = "jtSR5G2P/nm9s8WrVc26Xc/SQLupRxyXE+5eIeqlsTU=";
|
|
allowedIPs = [
|
|
"10.7.6.2/32"
|
|
"fd00:fae:fae:fae:fae:2::/96"
|
|
];
|
|
persistentKeepalive = 15;
|
|
dynamicEndpointRefreshSeconds = 30;
|
|
}
|
|
{
|
|
# metronom.pub.solar
|
|
endpoint = "49.13.236.167:51820";
|
|
publicKey = "zOSYGO7MfnOOUnzaTcWiKRQM0qqxR3JQrwx/gtEtHmo=";
|
|
allowedIPs = [
|
|
"10.7.6.3/32"
|
|
"fd00:fae:fae:fae:fae:3::/96"
|
|
];
|
|
persistentKeepalive = 15;
|
|
}
|
|
{
|
|
# tankstelle.pub.solar
|
|
endpoint = "80.244.242.5:51820";
|
|
publicKey = "iRTlY1lB7nPXf2eXzX8ZZDkfMmXyGjff5/joccbP8Cg=";
|
|
allowedIPs = [
|
|
"10.7.6.4/32"
|
|
"fd00:fae:fae:fae:fae:4::/96"
|
|
];
|
|
}
|
|
{
|
|
# trinkgenossin.pub.solar
|
|
publicKey = "QWgHovHxtqiQhnHLouSWiT6GIoQDmuvnThYL5c/rvU4=";
|
|
allowedIPs = [
|
|
"10.7.6.5/32"
|
|
"fd00:fae:fae:fae:fae:5::/96"
|
|
];
|
|
#endpoint = "80.244.242.5:51820";
|
|
endpoint = "[2a01:239:35d:f500::1]:51820";
|
|
persistentKeepalive = 15;
|
|
}
|
|
{
|
|
# delite.pub.solar
|
|
publicKey = "ZT2qGWgMPwHRUOZmTQHWCRX4m14YwOsiszjsA5bpc2k=";
|
|
allowedIPs = [
|
|
"10.7.6.6/32"
|
|
"fd00:fae:fae:fae:fae:6::/96"
|
|
];
|
|
#endpoint = "80.244.242.5:51820";
|
|
endpoint = "[2a04:52c0:124:9d8c::2]:51820";
|
|
persistentKeepalive = 15;
|
|
}
|
|
{
|
|
# blue-shell.pub.solar
|
|
publicKey = "bcrIpWrKc1M+Hq4ds3aN1lTaKE26f2rvXhd+93QrzR8=";
|
|
allowedIPs = [
|
|
"10.7.6.7/32"
|
|
"fd00:fae:fae:fae:fae:7::/96"
|
|
];
|
|
#endpoint = "80.244.242.5:51820";
|
|
endpoint = "[2a03:4000:43:24e::1]:51820";
|
|
persistentKeepalive = 15;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|