2024-05-22 19:49:34 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
flake,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
networking.firewall.allowedUDPPorts = [ 51820 ];
|
|
|
|
|
|
|
|
age.secrets.wg-private-key.file = "${flake.self}/secrets/metronom-wg-private-key.age";
|
|
|
|
|
|
|
|
networking.wireguard.interfaces = {
|
|
|
|
wg-ssh = {
|
|
|
|
listenPort = 51820;
|
|
|
|
mtu = 1300;
|
|
|
|
ips = [
|
|
|
|
"10.7.6.3/32"
|
|
|
|
"fd00:fae:fae:fae:fae:3::/96"
|
|
|
|
];
|
|
|
|
privateKeyFile = config.age.secrets.wg-private-key.path;
|
|
|
|
peers = flake.self.logins.admins.wireguardDevices ++ [
|
|
|
|
{
|
|
|
|
# flora-6.pub.solar
|
|
|
|
endpoint = "80.71.153.210:51820";
|
|
|
|
publicKey = "jtSR5G2P/nm9s8WrVc26Xc/SQLupRxyXE+5eIeqlsTU=";
|
|
|
|
allowedIPs = [
|
|
|
|
"10.7.6.2/32"
|
|
|
|
"fd00:fae:fae:fae:fae:2::/96"
|
|
|
|
];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
# nachtigall.pub.solar
|
|
|
|
endpoint = "138.201.80.102:51820";
|
|
|
|
publicKey = "qzNywKY9RvqTnDO8eLik75/SHveaSk9OObilDzv+xkk=";
|
|
|
|
allowedIPs = [
|
|
|
|
"10.7.6.1/32"
|
|
|
|
"fd00:fae:fae:fae:fae:1::/96"
|
|
|
|
];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-05-29 08:30:33 +00:00
|
|
|
services.openssh.listenAddresses = [
|
|
|
|
{
|
|
|
|
addr = "10.7.6.3";
|
|
|
|
port = 22;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
addr = "[fd00:fae:fae:fae:fae:3::]";
|
|
|
|
port = 22;
|
|
|
|
}
|
|
|
|
];
|
2024-05-22 19:49:34 +00:00
|
|
|
}
|