about summary refs log tree commit diff
path: root/machines/devhell
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2018-05-13 17:12:16 +0100
committerdevhell <devhell@mailfresser.de>2018-05-13 17:14:32 +0100
commitd656621c62ba1220921e2df602d50335f897d014 (patch)
tree5a4eb5ed093a3e1e2cebe946d8f5a7b15016067b /machines/devhell
parentd31d0e0ef7145ac478466840ad11cfb2b70da7e0 (diff)
machines/titan: Replace nameservers w/ fallbackDns
Let's try to take the DHCP supplied nameservers and add defined ones as
fallback in systemd-resolved.
Diffstat (limited to 'machines/devhell')
-rw-r--r--machines/devhell/titan.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/machines/devhell/titan.nix b/machines/devhell/titan.nix
index b43c62e0..e3b872be 100644
--- a/machines/devhell/titan.nix
+++ b/machines/devhell/titan.nix
@@ -60,7 +60,6 @@
     hostName = "titan";
     wireless.enable = true;
     useNetworkd= true;
-    nameservers = [ "1.1.1.1" "8.8.8.8" "8.8.4.4" ];
   };
 
   powerManagement = {
@@ -87,7 +86,6 @@
 
   vuizvui.user.devhell.profiles.services.enable = true;
 
-
   services = {
     tftpd.enable = false;
     gnome3.gnome-keyring.enable = true;
@@ -96,6 +94,9 @@
       drivers = [ pkgs.gutenprint pkgs.hplip pkgs.cups-brother-hl1110 ];
     };
     dnscrypt-proxy.enable = false;
+    resolved = {
+      fallbackDns = [ "1.1.1.1" "8.8.8.8" "8.8.4.4" ];
+    }
   };
 
   services.acpid = {