diff --git a/home/common/programs/dev.nix b/home/common/programs/dev.nix index 69a5b47..eda8e26 100644 --- a/home/common/programs/dev.nix +++ b/home/common/programs/dev.nix @@ -21,5 +21,6 @@ devenv # bruno zed-editor + tmux ]; } diff --git a/hosts/common/features/tailscale.nix b/hosts/common/features/tailscale.nix index 2ec6efa..d84689d 100644 --- a/hosts/common/features/tailscale.nix +++ b/hosts/common/features/tailscale.nix @@ -1,4 +1,9 @@ { pkgs, ... }: { services.tailscale.enable = true; + networking.nameservers = [ + "100.100.100.100" + "8.8.8.8" + "1.1.1.1" + ]; } diff --git a/hosts/desktop/default.nix b/hosts/desktop/default.nix index dc320be..c4bebe1 100644 --- a/hosts/desktop/default.nix +++ b/hosts/desktop/default.nix @@ -59,4 +59,9 @@ in pkgs.lib.splitString "\n" (builtins.readFile authorizedKeys); }; + + networking.nameservers = [ + "100.100.100.100" + "10.1.10.1" + ]; }