From 64b450bbe7226c93b7bd21e82692c4c776a3d98b Mon Sep 17 00:00:00 2001 From: 0xWheatyz Date: Sun, 5 Apr 2026 14:09:16 -0400 Subject: [PATCH] feat(wireguard): expand allowedIPs to include home network subnets Add 192.168.1.0/24, 10.0.0.0/24, and 10.0.1.0/26 to route traffic for the full home LAN through the WireGuard tunnel. --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 252adb5..19f0507 100644 --- a/configuration.nix +++ b/configuration.nix @@ -182,7 +182,7 @@ peers = [{ publicKey = "VEpzr/CeGdS6Wsy0NDDfmlB/bCYxS55A155HWGCIIzc="; endpoint = "vpn.leeworks.dev:51820"; - allowedIPs = [ "10.0.1.64/28" ]; + allowedIPs = [ "192.168.1.0/24" "10.0.0.0/24" "10.0.1.0/26" ]; persistentKeepalive = 25; }]; };