From 57d451f2027916281a31d178a66b61e5c1a72e22 Mon Sep 17 00:00:00 2001 From: maix0 Date: Wed, 4 Dec 2024 23:00:39 +0100 Subject: [PATCH] update: typo --- modules/pihole-container.factory.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/pihole-container.factory.nix b/modules/pihole-container.factory.nix index 6cc01e0..7287929 100644 --- a/modules/pihole-container.factory.nix +++ b/modules/pihole-container.factory.nix @@ -327,7 +327,7 @@ in rec { config = mkIf cfg.enable { assertions = [ - { assertion = length hostUserCfg.subUidRanges > 0 && length hostUserCfg.subGidRanges > 0 || hostUserCfg.autoSubUidGidRanges; + { assertion = (length hostUserCfg.subUidRanges > 0 && length hostUserCfg.subGidRanges > 0) || hostUserCfg.autoSubUidGidRange; message = '' The host user most have configured subUidRanges & subGidRanges as pihole is running in a rootless podman container. '';