mirror of
https://github.com/Superredstone/nixos.git
synced 2026-08-19 11:48:57 +02:00
19 lines
293 B
Nix
19 lines
293 B
Nix
{ ... }:
|
|
{
|
|
services.adguardhome = {
|
|
enable = true;
|
|
port = 8017;
|
|
mutableSettings = true;
|
|
settings = {
|
|
dns = {
|
|
upstream_dns = [
|
|
"1.1.1.1"
|
|
"9.9.9.9"
|
|
];
|
|
bind_hosts = [ "192.168.1.223" ];
|
|
port = 53;
|
|
};
|
|
};
|
|
};
|
|
}
|