From 8ddefe857dbbb909248f5225156c65f7ee457fdd Mon Sep 17 00:00:00 2001 From: Marwan Aljubeh Date: Thu, 25 Oct 2018 15:55:33 +0100 Subject: [PATCH] nixos/nextcloud: fix a typo The NextCloud `adminpass` option sets the admin password, not the database password. --- nixos/modules/services/web-apps/nextcloud.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix index 797d410dbeb3..c7e97bbeba9a 100644 --- a/nixos/modules/services/web-apps/nextcloud.nix +++ b/nixos/modules/services/web-apps/nextcloud.nix @@ -192,7 +192,7 @@ in { type = types.nullOr types.str; default = null; description = '' - Database password. Use adminpassFile to avoid this + Admin password. Use adminpassFile to avoid this being world-readable in the /nix/store. ''; };