From 0c579b500381bcd787c9170dca177303366ca0e5 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 25 Sep 2024 00:24:32 -0400 Subject: [PATCH] global/networking: move Tailscale's nameserver to the end --- modules/global/networking.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/global/networking.nix b/modules/global/networking.nix index e43c43e..e82e3a8 100644 --- a/modules/global/networking.nix +++ b/modules/global/networking.nix @@ -9,9 +9,6 @@ "tail4c593.ts.net" ]; nameservers = [ - # Tailscale - "100.100.100.100" - # Google Public DNS "8.8.8.8" "8.8.4.4" @@ -23,6 +20,9 @@ "1.0.0.1" "2696:4700:4700::1111" "2696:4700:4700::1111" + + # Tailscale + "100.100.100.100" ]; firewall.trustedInterfaces = [ "br-+" "tailscale0" ];