From e21ed8ddccbd7ab23cba194a6a5b3e4579fa52cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Neumann?= Date: Sun, 11 Jan 2026 22:35:06 +0100 Subject: [PATCH] nixos/dokuwiki: Slight improvement of documentation --- nixos/modules/services/web-apps/dokuwiki.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/modules/services/web-apps/dokuwiki.nix b/nixos/modules/services/web-apps/dokuwiki.nix index d1c0d2103522..7b14930cd90d 100644 --- a/nixos/modules/services/web-apps/dokuwiki.nix +++ b/nixos/modules/services/web-apps/dokuwiki.nix @@ -252,7 +252,7 @@ let else null; description = '' - Location of the dokuwiki acl rules. Mutually exclusive with services.dokuwiki.acl + Location of the dokuwiki acl rules. Mutually exclusive with services.dokuwiki.acl which is preferred. Consult documentation for further instructions. Example: @@ -294,7 +294,7 @@ let type = types.listOf types.path; default = [ ]; description = '' - List of path(s) to respective plugin(s) which are copied from the 'plugin' directory. + List of path(s) to respective plugin(s) which are copied into the 'plugin' directory. ::: {.note} These plugins need to be packaged before use, see example. @@ -312,7 +312,7 @@ let }; installPhase = "mkdir -p $out; cp -R * $out/"; }; - # And then pass this theme to the plugin list like this: + # And then pass this plugin to the plugin list like this: in [ plugin-icalevents ] ''; }; @@ -321,7 +321,7 @@ let type = types.listOf types.path; default = [ ]; description = '' - List of path(s) to respective template(s) which are copied from the 'tpl' directory. + List of path(s) to respective template(s) which are copied into the 'tpl' directory. ::: {.note} These templates need to be packaged before use, see example.