about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--hosts/configuration.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix
index a77d203..b8a8ffc 100644
--- a/hosts/configuration.nix
+++ b/hosts/configuration.nix
@@ -40,10 +40,11 @@
     hostName = hostname; # Define your hostname.
     enableIPv6 = true;
     extraHosts = builtins.readFile "${dotfiles}/hosts";
-    nameservers = [ "9.9.9.9" ];
     dhcpcd = {
       enable = true;
+      extraConfig = "nohook resolv.conf";
     };
+    resolvconf.enable = false;
     firewall = {
       enable = true;
       allowedTCPPorts = [ 80 22 9090 ];
@@ -140,6 +141,7 @@
         port = 22;
       }];
     };
+    unbound.enable = true;
     dbus.enable = true;
     irqbalance.enable = true;
     fwupd.enable = true;