From 72a34c777ad6a2e59e15329fb9f01806b70fdddc Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Sun, 10 Mar 2024 22:13:00 +0100 Subject: [PATCH] nixos/paperless: fix passwordFile --- modules/services/paperless/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/paperless/default.nix b/modules/services/paperless/default.nix index ed83041..8aafbb8 100644 --- a/modules/services/paperless/default.nix +++ b/modules/services/paperless/default.nix @@ -23,7 +23,7 @@ in mediaDir = mkOption { type = types.path; - description = "Password for the defaultUser for FreshRSS."; + description = "Location of the FreshRSS data."; example = "/run/secrets/freshrss"; }; @@ -37,7 +37,7 @@ in config = lib.mkIf cfg.enable { services.paperless = { enable = true; - inherit (cfg) port mediaDir; + inherit (cfg) port mediaDir passwordFile; extraConfig = { PAPERLESS_OCR_LANGUAGE = "deu+eng"; } // cfg.extraConfig;