summary refs log tree commit diff stats
path: root/hosts
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-07-28 11:13:53 +0200
committersils <sils@sils.li>2023-07-28 11:13:53 +0200
commit66ff646bda5a39e921bcbfb31414526a98444232 (patch)
tree0515fa9a28ec2cd3d4d2d5f3c7d9bb4792f41831 /hosts
parentFix(flake): Add nixneovim overlay (diff)
downloadnix-config-66ff646bda5a39e921bcbfb31414526a98444232.tar.gz
nix-config-66ff646bda5a39e921bcbfb31414526a98444232.zip
Fix(hosts/thinklappi): Disable pinned nameservers
This is necessary for public wifi (with login captive portal) to work
Diffstat (limited to 'hosts')
-rw-r--r--hosts/thinklappi/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/thinklappi/default.nix b/hosts/thinklappi/default.nix
index a2d6635..855c03d 100644
--- a/hosts/thinklappi/default.nix
+++ b/hosts/thinklappi/default.nix
@@ -24,10 +24,10 @@
 
   networking = {
     hostName = "thinklappi";
-    nameservers = ["2620:fe::fe" "2620:fe::9" "9.9.9.9" "149.112.112.112"];
+    #nameservers = ["2620:fe::fe" "2620:fe::9" "9.9.9.9" "149.112.112.112"];
     networkmanager = {
       enable = true;
-      dns = "none";
+      #dns = "none";
     };
   };