From 3188862fe9bf9c6ef1a495eba57b41d2fa890de1 Mon Sep 17 00:00:00 2001 From: Jake Hillion Date: Sat, 29 Apr 2023 23:34:37 +0100 Subject: [PATCH] dns: remove tailscale resolver --- modules/common/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/common/default.nix b/modules/common/default.nix index 08996b7..f11461a 100644 --- a/modules/common/default.nix +++ b/modules/common/default.nix @@ -48,7 +48,7 @@ }; networking = rec { - nameservers = [ "1.1.1.1" "8.8.8.8" "100.100.100.100" ]; + nameservers = [ "1.1.1.1" "8.8.8.8" ]; networkmanager.dns = "none"; }; networking.firewall.enable = true;