summary refs log tree commit diff
diff options
context:
space:
mode:
authorMoritz 'e1mo' Fromm <git@e1mo.de>2023-02-11 11:12:51 +0100
committerMoritz 'e1mo' Fromm <git@e1mo.de>2023-02-11 11:12:51 +0100
commite8b59a1e2ed7d0523ba1ad55bfe296bfaadab923 (patch)
tree8f25a0d1e48de5a2329bb90e75afdd946428840c
parentcf16690d1dd14ea6cfe1e3ba989b13889da3441e (diff)
downloadnixpkgs-e8b59a1e2ed7d0523ba1ad55bfe296bfaadab923.tar
nixpkgs-e8b59a1e2ed7d0523ba1ad55bfe296bfaadab923.tar.gz
nixpkgs-e8b59a1e2ed7d0523ba1ad55bfe296bfaadab923.tar.bz2
nixpkgs-e8b59a1e2ed7d0523ba1ad55bfe296bfaadab923.tar.lz
nixpkgs-e8b59a1e2ed7d0523ba1ad55bfe296bfaadab923.tar.xz
nixpkgs-e8b59a1e2ed7d0523ba1ad55bfe296bfaadab923.tar.zst
nixpkgs-e8b59a1e2ed7d0523ba1ad55bfe296bfaadab923.zip
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.
-rw-r--r--nixos/modules/services/web-apps/dokuwiki.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/dokuwiki.nix b/nixos/modules/services/web-apps/dokuwiki.nix
index 21537208365..c85109b1479 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 = { ... }: {