From 8f33fb5ef4026560f26fab1b33bfc77a571f3883 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Mon, 8 May 2023 09:06:21 +0100 Subject: [PATCH] do not explicitly add tailscale's dns as it's inconsistent with dns resolution of non-tailscale hosts --- nixos/common.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/nixos/common.nix b/nixos/common.nix index d267cfda..dbba5ce7 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -54,13 +54,8 @@ in { shell = pkgs.zsh; }; - networking.nameservers = [ - "100.100.100.100" - "9.9.9.9" - "2620:fe::fe" - "149.112.112.112" - "2620:fe::9" - ]; + networking.nameservers = + [ "9.9.9.9" "2620:fe::fe" "149.112.112.112" "2620:fe::9" ]; networking.hosts = { "10.11.99.1" = [ "remarkable" ]; };