From e3e6cac8a36ebbe0eab9b26ce51aefa321397d29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Sat, 28 Feb 2026 15:07:22 +0100 Subject: [PATCH] Fix pi-hole's compose file indentation. --- modules/services/pi-hole.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/services/pi-hole.nix b/modules/services/pi-hole.nix index 24f4c83..7719b6f 100644 --- a/modules/services/pi-hole.nix +++ b/modules/services/pi-hole.nix @@ -51,12 +51,13 @@ helper.mkPodmanService { FTLCONF_webserver_domain: ${cfg.subdomain}.${config.numbus.services.domain} FTLCONF_dns_upstreams: 9.9.9.9;149.112.112.112 FTLCONF_dns_hosts: | - ${lib.concatStringsSep "" (lib.mapAttrsToList (name: service: + ${lib.concatStringsSep "" (lib.mapAttrsToList (name: service: if builtins.isAttrs service && service ? enable && service.enable && service ? subdomain then " ${config.numbus.networking.ipAddress} ${service.subdomain}.${config.numbus.services.domain}\n" else "" ) config.numbus.services)} + FTLCONF_dns_listeningMode: "BIND" FTLCONF_dns_domain_name: "${config.numbus.services.domain}" FTLCONF_dns_domain_local: "true"