From 3b1789322fcbcb5cf51228d732752714f1bf77da Mon Sep 17 00:00:00 2001 From: Sebastian Date: Sun, 24 Oct 2021 12:16:54 +0200 Subject: [PATCH] nixos/bookstack: fix error message output (#142722) --- nixos/modules/services/web-apps/bookstack.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/bookstack.nix b/nixos/modules/services/web-apps/bookstack.nix index 34a31af9c9d..956a1a2f765 100644 --- a/nixos/modules/services/web-apps/bookstack.nix +++ b/nixos/modules/services/web-apps/bookstack.nix @@ -219,7 +219,7 @@ in { assertions = [ { assertion = db.createLocally -> db.user == user; - message = "services.bookstack.database.user must be set to ${user} if services.mediawiki.database.createLocally is set true."; + message = "services.bookstack.database.user must be set to ${user} if services.bookstack.database.createLocally is set true."; } { assertion = db.createLocally -> db.passwordFile == null; message = "services.bookstack.database.passwordFile cannot be specified if services.bookstack.database.createLocally is set to true.";