From 38c1070abaebe5e464acf4d159e0502dd681fc84 Mon Sep 17 00:00:00 2001 From: blake Date: Wed, 8 Oct 2025 15:57:34 -0500 Subject: [PATCH] 96 current 2025-10-08 15:53:50 25.05.20251006.20c4598 6.12.50 * --- flake.nix | 2 +- modules/system/vpns.nix | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index 91a2d7b..77b785a 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,6 @@ # flake for blakes nixos config # define new devices in outputs -# generation: 95 current 2025-10-08 14:44:19 25.05.20251006.20c4598 6.12.50 * +# generation: 96 current 2025-10-08 15:53:50 25.05.20251006.20c4598 6.12.50 * { description = "blakes nix config"; inputs = { diff --git a/modules/system/vpns.nix b/modules/system/vpns.nix index ff9c33a..3aaf0ba 100644 --- a/modules/system/vpns.nix +++ b/modules/system/vpns.nix @@ -34,7 +34,7 @@ in }; # enable mullvad mexico w/ wireguard - networking.wireguard.interfaces = lib.mkIf cfg.wg_pia_mexico { + networking.wireguard.interfaces = lib.mkIf cfg.wg_mex { wg_mex = { # client settings privateKeyFile = config.sops.secrets."wg_mex_key".path; @@ -46,10 +46,10 @@ in endpoint = "149.88.22.129:51820"; persistentKeepalive = 25; } ]; - postSetup = '' - # Remove default route that wg might add - ip route del default dev wg-mullvad 2>/dev/null || true - ''; + #postSetup = '' + # # Remove default route that wg might add + # ip route del default dev wg-mullvad 2>/dev/null || true + #''; }; };