21 lines
507 B
Nix
21 lines
507 B
Nix
{ ... }:
|
|
{
|
|
networking.wireguard = {
|
|
enable = true;
|
|
interfaces."wg0" = {
|
|
listenPort = 51820;
|
|
privateKeyFile = "/run/secrets/network/wireguard/privkey";
|
|
peers = [
|
|
# Old infra: ubuntu-4gb-fsn1-1
|
|
{
|
|
publicKey = "ZtU2iWwVYeGyXC1ak+wFdTuisQNq7gMthYQZaw6InDU=";
|
|
endpoint = "23.88.44.119:51820";
|
|
allowedIPs = [
|
|
"fd00:e621:e621::/48"
|
|
];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
networking.firewall.allowedUDPPorts = [ 51820 ];
|
|
}
|