summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/bookstack.nix
diff options
context:
space:
mode:
authorSebastian <kreativmonkey@calyrium.org>2021-10-24 12:13:54 +0200
committerGitHub <noreply@github.com>2021-10-24 18:13:54 +0800
commitdc0769c63c65118eb39720d17604d22c7787887d (patch)
tree5b0418a798382a8842351db115bbfe03b7fbf453 /nixos/modules/services/web-apps/bookstack.nix
parentda675ab0ef8ac399a2c022bbfaf7931b18b86831 (diff)
downloadnixpkgs-dc0769c63c65118eb39720d17604d22c7787887d.tar
nixpkgs-dc0769c63c65118eb39720d17604d22c7787887d.tar.gz
nixpkgs-dc0769c63c65118eb39720d17604d22c7787887d.tar.bz2
nixpkgs-dc0769c63c65118eb39720d17604d22c7787887d.tar.lz
nixpkgs-dc0769c63c65118eb39720d17604d22c7787887d.tar.xz
nixpkgs-dc0769c63c65118eb39720d17604d22c7787887d.tar.zst
nixpkgs-dc0769c63c65118eb39720d17604d22c7787887d.zip
nixos/bookstack: fix error message output (#142729)
Diffstat (limited to 'nixos/modules/services/web-apps/bookstack.nix')
-rw-r--r--nixos/modules/services/web-apps/bookstack.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/bookstack.nix b/nixos/modules/services/web-apps/bookstack.nix
index 74eeb2faa4a..54c491f8b17 100644
--- a/nixos/modules/services/web-apps/bookstack.nix
+++ b/nixos/modules/services/web-apps/bookstack.nix
@@ -221,7 +221,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.";