about summary refs log tree commit diff
path: root/nixos/modules/services/web-apps
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2024-04-23 12:16:29 +0200
committerGitHub <noreply@github.com>2024-04-23 12:16:29 +0200
commit0b4cb020ffa822f85a965c64f967a1fdab3ffa3f (patch)
treee69a462569428237e74bb1297b60cc7a5f64ad0d /nixos/modules/services/web-apps
parent7264d7e5f8b36460b4da969d9ae0b91eca55c011 (diff)
parentac259c3a5972797f44b05b4ad63507a36e1432d1 (diff)
Merge pull request #306076 from mrgiles/mediawiki_explicit_admin_username
mediawiki: update passwordfile description field
Diffstat (limited to 'nixos/modules/services/web-apps')
-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";
       };