diff options
Diffstat (limited to 'nix/programs')
-rw-r--r-- | nix/programs/wireguard/default.nix | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/nix/programs/wireguard/default.nix b/nix/programs/wireguard/default.nix index 3bddc22..ac524a1 100644 --- a/nix/programs/wireguard/default.nix +++ b/nix/programs/wireguard/default.nix @@ -19,17 +19,17 @@ }]; }; - tinternet = { - address = [ "69.0.0.2/32" "cafe::2/128" "fe80::2/128" ]; - dns = [ "1.1.1.1" ]; - privateKeyFile = config.sops.secrets.tinternetWg.path; + #tinternet = { + # address = [ "69.0.0.2/32" "cafe::2/128" "fe80::2/128" ]; + # dns = [ "1.1.1.1" ]; + # privateKeyFile = config.sops.secrets.tinternetWg.path; - peers = [{ - publicKey = "8Ice49Yc7N75OYJW59ohDbfUjgrkwIuGWKWocJQGgzI="; - allowedIPs = [ "0.0.0.0/0" "::/0" ]; - endpoint = "freya.cat:51282"; - persistentKeepalive = 25; - }]; - }; + # peers = [{ + # publicKey = "8Ice49Yc7N75OYJW59ohDbfUjgrkwIuGWKWocJQGgzI="; + # allowedIPs = [ "0.0.0.0/0" "::/0" ]; + # endpoint = "freya.cat:51282"; + # persistentKeepalive = 25; + # }]; + #}; }; } |