nixos-config/hosts/chunk/adguard.nix

25 lines
495 B
Nix
Raw Permalink Normal View History

2024-12-19 02:32:58 -05:00
{ ... }:
{
2024-12-15 02:44:50 -05:00
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";
}
];
2024-12-17 02:09:57 -05:00
# do not listen eveywhere cause podman runs it's own DNS
dns.bind_hosts = [
"127.0.0.1"
"::1"
"31.59.129.225"
"2a0f:85c1:840:2bfb::1"
];
2024-12-15 02:44:50 -05:00
};
};
}