From 3151b73ba9623028649d4efbb69778c9160498a2 Mon Sep 17 00:00:00 2001 From: Jet Date: Thu, 26 Mar 2026 20:50:36 -0700 Subject: [PATCH] feat: add mullvad exit nodes --- configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 9d76c29..061aa55 100644 --- a/configuration.nix +++ b/configuration.nix @@ -31,7 +31,13 @@ networking.firewall.checkReversePath = "loose"; networking.firewall.interfaces."tailscale0".allowedTCPPorts = [ 4096 ]; - services.tailscale.enable = true; + services.tailscale = { + enable = true; + extraSetFlags = [ + "--exit-node=us-sjc-wg-401.mullvad.ts.net" + "--exit-node-allow-lan-access" + ]; + }; time.timeZone = "America/Los_Angeles"; i18n.defaultLocale = "en_US.UTF-8";