diff --git a/config/host-config/limina.nix b/config/host-config/limina.nix index fcf1fc0..694e521 100644 --- a/config/host-config/limina.nix +++ b/config/host-config/limina.nix @@ -81,7 +81,7 @@ in { bootstrap-dns = "1.1.1.1"; allowed-networks = [ "1.1.1.1/32" "1.0.0.1/32" "10.0.0.0/16" "localhost" "link-local" ]; - listen-ips = [ "127.0.0.1" ]; + listen-ips = [ primary-ip ]; }; }; @@ -99,11 +99,10 @@ in { image = "pihole/pihole:2021.10"; autoStart = true; ports = [ "5353:53/tcp" "5353:53/udp" "3080:80/tcp" ]; - extraOptions = [ "--add-host=host.docker.internal:host-dns" ]; environment = { # ServerIP = primary-ip; VIRTUAL_HOST = "dns-hole.sea.fudo.org"; - DNS1 = "host-dns#${toString dns-proxy-port}"; + DNS1 = "${primary-ip}#${toString dns-proxy-port}"; }; volumes = [ "/state/pihole/etc-pihole/:/etc/pihole/"