aboutsummaryrefslogtreecommitdiff
path: root/modules/system/nixos/networking/resolved.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-02-01 09:16:48 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-02-01 09:16:48 -0600
commit2a07183126da63858a287990cc7aa291b83e6d18 (patch)
tree57b309952e7180d9aa976af90323745d7d89812a /modules/system/nixos/networking/resolved.nix
parent2d84b4d1de0dc50bf50bb3cc7469db431b7708c5 (diff)
system update
Diffstat (limited to 'modules/system/nixos/networking/resolved.nix')
-rw-r--r--modules/system/nixos/networking/resolved.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/modules/system/nixos/networking/resolved.nix b/modules/system/nixos/networking/resolved.nix
index 03333b1..ba2ca76 100644
--- a/modules/system/nixos/networking/resolved.nix
+++ b/modules/system/nixos/networking/resolved.nix
@@ -8,11 +8,12 @@
services.resolved = {
enable = true;
- dnsovertls = "opportunistic";
- dnssec = "allow-downgrade";
+ settings.Resolve = {
+ DNSOverTLS = true;
+ DNSSEC = true;
- # disable extra stuff
- llmnr = "false";
- extraConfig = "MulticastDNS=no";
+ LLMNR = false;
+ MulticastDNS = false;
+ };
};
}