summary refs log tree commit diff stats
path: root/system/settings/base.nix
diff options
context:
space:
mode:
authorAlan Pearce2023-03-13 20:35:57 +0100
committerAlan Pearce2023-03-14 16:30:42 +0100
commitacf62d530ba983e762716ef78bd5078c4fc9778b (patch)
treefe062f63912fbaced5b4d49156deb7a19087f5f0 /system/settings/base.nix
parentb0de86df156aa7828670a094a6313cd31fb59903 (diff)
downloadnixfiles-acf62d530ba983e762716ef78bd5078c4fc9778b.tar.lz
nixfiles-acf62d530ba983e762716ef78bd5078c4fc9778b.tar.zst
nixfiles-acf62d530ba983e762716ef78bd5078c4fc9778b.zip
nextdns: remove module
I don't use this on systems anymore; it's on my router now.
Diffstat (limited to 'system/settings/base.nix')
-rw-r--r--system/settings/base.nix8
1 files changed, 0 insertions, 8 deletions
diff --git a/system/settings/base.nix b/system/settings/base.nix
index 646e3c3e..1fa61d09 100644
--- a/system/settings/base.nix
+++ b/system/settings/base.nix
@@ -4,9 +4,6 @@
   lib,
   ...
 }: {
-  imports = [
-    ../modules/nextdns.nix
-  ];
   boot.loader.timeout = lib.mkDefault 1;
   services.irqbalance.enable = true;
 
@@ -17,9 +14,4 @@
   programs.zsh = {
     histFile = "\${XDG_DATA_HOME}/zsh/history";
   };
-
-  networking.nextdns = {
-    configID = "abd6e5";
-    identifyDevice = true;
-  };
 }