nixos-config/common/services/adguardhome.nix

11 lines
213 B
Nix
Raw Normal View History

2024-04-08 20:32:17 +02:00
{
2024-04-17 20:39:12 +02:00
# Ad-blocking DNS server
2024-05-09 20:50:05 +02:00
# Web UI available at one of:
# https://localhost
# http://localhost
# http://localhost:3000
2024-04-08 20:32:17 +02:00
services.adguardhome.enable = true;
networking.nameservers = ["127.0.0.1"];
2024-04-08 21:28:07 +02:00
}