about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorMarcelo Giles <marcelogiles@gmail.com>2024-04-22 11:02:52 -0700
committerMarcelo Giles <marcelogiles@gmail.com>2024-04-22 11:02:52 -0700
commitac259c3a5972797f44b05b4ad63507a36e1432d1 (patch)
tree2997fc8da7accf8ba7346407327d87140a10a967 /nixos/modules
parent80368c5bef936a8229d62d8e5125e9d4f8c494a7 (diff)
mediawiki: update passwordfile description field
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/web-apps/mediawiki.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/mediawiki.nix b/nixos/modules/services/web-apps/mediawiki.nix
index 7246fd93a2314..b11626ec2dc3b 100644
--- a/nixos/modules/services/web-apps/mediawiki.nix
+++ b/nixos/modules/services/web-apps/mediawiki.nix
@@ -246,7 +246,9 @@ in
 
       passwordFile = mkOption {
         type = types.path;
-        description = "A file containing the initial password for the admin user.";
+        description = ''
+          A file containing the initial password for the administrator account "admin".
+        '';
         example = "/run/keys/mediawiki-password";
       };