From 7a0bc90d935417f7258f9232bbd05904a92f7013 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Fri, 23 Aug 2024 09:13:15 +0000 Subject: [PATCH] fix(docspell): config typos --- docspell.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docspell.nix b/docspell.nix index 1f3b31b..c2eb913 100644 --- a/docspell.nix +++ b/docspell.nix @@ -10,13 +10,13 @@ in base-url = "http://localhost:7878"; bind = { address = "0.0.0.0"; - port = "7878"; + port = 7878; }; scheduler.pool-size = 1; jdbc = { url = "jdbc:postgresql://localhost:5432/docspell"; user = "docspell"; - paswword = "docspell"; + password = "docspell"; }; }; services.docspell-restserver = { @@ -38,7 +38,7 @@ in jdbc = { url = "jdbc:postgresql://localhost:5432/docspell"; user = "docspell"; - paswword = "docspell"; + password = "docspell"; }; }; };