From a550093e8e54575727f7d3cb54f6b8d0ce42ddda Mon Sep 17 00:00:00 2001 From: etwas Date: Mon, 8 Dec 2025 14:10:04 +0100 Subject: [PATCH] feat: explicitly add resolvd --- modules/misc_hardware/networking.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/modules/misc_hardware/networking.nix b/modules/misc_hardware/networking.nix index 48ac545..cc0188c 100644 --- a/modules/misc_hardware/networking.nix +++ b/modules/misc_hardware/networking.nix @@ -45,5 +45,18 @@ }; }; + services.resolved = { + enable = true; + + dnsovertls = "opportunistic"; + + fallbackDns = [ + "1.1.1.1" + "1.0.0.1" + "2606:4700:4700::1111" + "2606:4700:4700::1001" + ]; + }; + programs.wireshark.enable = true; }