diff options
author | Alan Pearce | 2023-03-13 20:35:57 +0100 |
---|---|---|
committer | Alan Pearce | 2023-03-14 16:30:42 +0100 |
commit | acf62d530ba983e762716ef78bd5078c4fc9778b (patch) | |
tree | fe062f63912fbaced5b4d49156deb7a19087f5f0 /system/settings | |
parent | b0de86df156aa7828670a094a6313cd31fb59903 (diff) | |
download | nixfiles-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')
-rw-r--r-- | system/settings/base.nix | 8 |
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; - }; } |