From f3e629b3e3c0f99f543671a08bdc3eed76f796cb Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 18 Feb 2025 00:46:41 -0500 Subject: [PATCH] Infini-FRAMEWORK: don't autostart conflicting vpns --- hosts/Infini-FRAMEWORK/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/Infini-FRAMEWORK/default.nix b/hosts/Infini-FRAMEWORK/default.nix index 8d80e79..e8e1940 100644 --- a/hosts/Infini-FRAMEWORK/default.nix +++ b/hosts/Infini-FRAMEWORK/default.nix @@ -138,6 +138,7 @@ networking.firewall.allowedUDPPorts = [ 51820 ]; networking.wg-quick.interfaces.wg0 = { + autostart = false; address = [ "10.10.0.3/32" ]; listenPort = 51820; privateKeyFile = "/home/infinidoge/tmp/bb-vpn-geg.key"; @@ -151,6 +152,7 @@ ]; }; networking.wg-quick.interfaces.wg1 = { + autostart = false; address = [ "10.11.0.3/32" ]; listenPort = 51820; privateKeyFile = "/home/infinidoge/tmp/bb-vpn-dfw.key";