unused wireguard config

This commit is contained in:
Noah Masur 2022-05-29 12:00:19 -04:00
parent f1fda23f3f
commit 3ea0e40121

View File

@ -0,0 +1,14 @@
{ ... }: {
networking.wireguard.interfaces = {
wg0 = {
ips = [ "10.0.0.1/32" "fc00:bbbb:bbbb:bb01::3:7fea/128" ];
privateKeyFile = "/private/wireguard-pk";
peers = [{
publicKey = "ABCDEFABCDEF";
allowedIPs = [ "0.0.0.0/0" "::0/0" ];
endpoint = "10.0.0.1:51820";
persistentKeepalive = 25;
}];
};
};
}