nixos-config/common/services/adguardhome.nix

8 lines
158 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-04-23 16:19:33 +02:00
# Web UI available at 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
}