nixos/services/adguardhome/default.nix
Evie Litherland-Smith 64109cf380 Fix adguardhome settings
Set http port and dns settings using updated schema, disable rate
limiting and enable safe search
2023-10-22 06:45:46 +01:00

24 lines
526 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ../traefik/adguardhome.nix ];
services.adguardhome = {
enable = true;
mutableSettings = false;
settings = {
http.address = "0.0.0.0:3001";
dns = {
bind_hosts = [ "127.0.0.1" "192.168.1.230" ];
bootstrap_dns = [ "9.9.9.9" "149.112.112.10" ];
ratelimit = 0;
safe_search.enabled = true;
};
};
openFirewall = true;
};
networking.firewall = {
allowedTCPPorts = [ 53 ];
allowedUDPPorts = [ 53 ];
};
}