diff --git a/config/wireguard.nix b/config/wireguard.nix index ad296ec8..1f9d633b 100644 --- a/config/wireguard.nix +++ b/config/wireguard.nix @@ -5,6 +5,16 @@ 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" + ]; + } + ]; }; }; }