From 63fca71c8c56cd4ee5d100132a1a0b10fd4a77bc Mon Sep 17 00:00:00 2001 From: cy Date: Sat, 14 Dec 2024 16:47:58 -0500 Subject: [PATCH] bring adguard here --- nix/hosts/chunk/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/nix/hosts/chunk/default.nix b/nix/hosts/chunk/default.nix index 159816e..c5f1755 100644 --- a/nix/hosts/chunk/default.nix +++ b/nix/hosts/chunk/default.nix @@ -285,5 +285,21 @@ in { } ]; }; + + # adguard + services.adguardhome = { + enable = true; + host = "127.0.0.1"; + port = 8082; + settings = { + http.port = "8083"; + users = [ + { + name = "cy"; + password = "$2y$10$BZy2zYJj5z4e8LZCq/GwuuhWUafL/MNFO.YcsAMmpDS.2krPxi7KC"; + } + ]; + }; + }; }