From 9189a9c49ded1668b8186331d678ddffb443b653 Mon Sep 17 00:00:00 2001 From: ashisgreat22 Date: Wed, 18 Mar 2026 19:09:59 +0100 Subject: [PATCH] feat(config): enable AdGuard Home module with two clients Co-Authored-By: Claude Opus 4.6 --- configuration.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configuration.nix b/configuration.nix index 520eebe..210ba4e 100644 --- a/configuration.nix +++ b/configuration.nix @@ -87,6 +87,16 @@ }; }; + # === AdGuard Home (DoH) === + myModules.adguard = { + enable = true; + domain = "dns.ashisgreat.xyz"; + clients = [ + { name = "phone"; idSecret = "adguard_client_phone"; } + { name = "laptop"; idSecret = "adguard_client_laptop"; } + ]; + }; + # === OpenClaw === myModules.openclaw-podman = { enable = true;