defiant/wireguard: deprecate old peers

This commit is contained in:
2025-12-31 20:59:58 +01:00
parent 27596cfcee
commit 0ffb502f68
2 changed files with 1 additions and 17 deletions

View File

@@ -22,17 +22,7 @@ in {
${pkgs.iptables}/bin/iptables -t nat -D POSTROUTING -s 10.100.0.0/24 -d 192.168.10.0/24 -o eth0 -j MASQUERADE
'';
peers = [
{ # Burnham
publicKey = "JcfyrMoZmnbibVLaIKuGSARAX2alFv4kwLbJaLBNbzo=";
persistentKeepalive = 60;
allowedIPs = [
"10.100.0.2/32"
"192.168.11.0/24"
];
#endpoint = "site2.feal.no:51902";
}
] ++ (import ../../../common/wireguard-peers.nix);
peers = (import ../../../common/wireguard-peers.nix);
};
};
}