about summary refs log tree commit diff
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2018-05-13 21:35:58 +0100
committerdevhell <devhell@mailfresser.de>2018-05-13 21:35:58 +0100
commit362567cba8b0b854db81bc3dbf5ebdec60d3e4c0 (patch)
treeac8d13f6535d68e09bd42441bcbc6eb7e6004d3f
parent5b54095f2005daff0806f005c5a2b1d221097f46 (diff)
machines/titan: Reduce to only two additional DNS
Apparently only three primary DNS servers allowed, so we'll reduce it to
whatever DHCP offers plus two of our own definition.
-rw-r--r--machines/devhell/titan.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/machines/devhell/titan.nix b/machines/devhell/titan.nix
index 9433da9d..cd14f7a4 100644
--- a/machines/devhell/titan.nix
+++ b/machines/devhell/titan.nix
@@ -54,7 +54,7 @@
   systemd.services.systemd-networkd-wait-online.enable = false;
 
   # XXX Ensure that these are added in addition to the DHCP proviced DNS servers
-  systemd.network.networks."99-main".dns = [ "1.1.1.1" "8.8.8.8" "8.8.4.4" ];
+  systemd.network.networks."99-main".dns = [ "1.1.1.1" "8.8.8.8" ];
 
   networking = {
     hostName = "titan";