From 46cf4907cbcb52b32e925332dba18ff8a078e935 Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Sun, 30 Jun 2024 22:18:28 +0200 Subject: [PATCH] Disable ipv6 for wireguard tunnel until fixed --- configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configuration.nix b/configuration.nix index 177257f..99f1a74 100644 --- a/configuration.nix +++ b/configuration.nix @@ -140,7 +140,7 @@ wg-quick.interfaces = { home = { privateKeyFile = config.sops.secrets."wireguard/home/privateKey".path; - address = [ "10.225.191.4/24" "fd11:5ee:bad:c0de::4/128" ]; + address = [ "10.225.191.4/24" ]; dns = [ "192.168.30.131" ]; autostart = false; mtu = 1412; @@ -148,13 +148,13 @@ presharedKeyFile = config.sops.secrets."wireguard/home/presharedKey".path; endpoint = "wg.kun.is:51820"; publicKey = "fa3mQ7ximJbH7cu2ZbWidto5xBGxEEfWvCCiUDk00Hg="; - allowedIPs = [ "0.0.0.0/0" "::/0" ]; + allowedIPs = [ "0.0.0.0/0" ]; }]; }; home-no-pihole = { privateKeyFile = config.sops.secrets."wireguard/home/privateKey".path; - address = [ "10.225.191.4/24" "fd11:5ee:bad:c0de::4/128" ]; + address = [ "10.225.191.4/24" ]; dns = [ "192.168.10.1" ]; autostart = false; mtu = 1412; @@ -162,7 +162,7 @@ presharedKeyFile = config.sops.secrets."wireguard/home/presharedKey".path; endpoint = "wg.kun.is:51820"; publicKey = "fa3mQ7ximJbH7cu2ZbWidto5xBGxEEfWvCCiUDk00Hg="; - allowedIPs = [ "0.0.0.0/0" "::/0" ]; + allowedIPs = [ "0.0.0.0/0" ]; }]; }; };