nixos-config/hosts/chunk/adguard.nix
2024-12-15 02:44:50 -05:00

16 lines
306 B
Nix

{...}: {
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";
}
];
};
};
}