From e8b59a1e2ed7d0523ba1ad55bfe296bfaadab923 Mon Sep 17 00:00:00 2001 From: Moritz 'e1mo' Fromm Date: Sat, 11 Feb 2023 11:12:51 +0100 Subject: [PATCH] nixos/dokuwiki: remove last reference to aclUse This was overlooked in #209299, but will throw a trace when building a system even when the setting was not set. --- nixos/modules/services/web-apps/dokuwiki.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/dokuwiki.nix b/nixos/modules/services/web-apps/dokuwiki.nix index 215372083654..c85109b1479e 100644 --- a/nixos/modules/services/web-apps/dokuwiki.nix +++ b/nixos/modules/services/web-apps/dokuwiki.nix @@ -82,7 +82,7 @@ let basePackage = cfg.package; localConfig = dokuwikiLocalConfig hostName cfg; pluginsConfig = dokuwikiPluginsLocalConfig hostName cfg; - aclConfig = if cfg.aclUse && cfg.acl != null then dokuwikiAclAuthConfig hostName cfg else null; + aclConfig = if cfg.settings.useacl && cfg.acl != null then dokuwikiAclAuthConfig hostName cfg else null; }; aclOpts = { ... }: {