11 lines
213 B
Nix
11 lines
213 B
Nix
{
|
|
# Ad-blocking DNS server
|
|
# Web UI available at one of:
|
|
# https://localhost
|
|
# http://localhost
|
|
# http://localhost:3000
|
|
services.adguardhome.enable = true;
|
|
|
|
networking.nameservers = ["127.0.0.1"];
|
|
}
|