From 42d53f650075ea58b1b3f03d4dc5f56a6b34be32 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Thu, 15 Jan 2026 23:03:00 +0100 Subject: [PATCH] thrall: Configure automatic exports for paperless --- hosts/thrall/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/hosts/thrall/default.nix b/hosts/thrall/default.nix index 164a582..fddb6ac 100644 --- a/hosts/thrall/default.nix +++ b/hosts/thrall/default.nix @@ -322,19 +322,17 @@ in services.paperless = { enable = true; address = "127.0.0.1"; + domain = "docs.failco.de"; port = 3002; consumptionDirIsPublic = true; configureTika = true; + exporter.enable = true; settings = { PAPERLESS_OCR_LANGUAGE = "deu+eng"; PAPERLESS_OCR_USER_ARGS = ''{"invalidate_digital_signatures": true}''; PAPERLESS_URL = "https://docs.failco.de"; PAPERLESS_CONSUMER_RECURSIVE = true; PAPERLESS_CONSUMER_SUBDIRS_AS_TAGS = true; - - # workaround for classification getting stuck, see - # https://github.com/NixOS/nixpkgs/issues/240591#issuecomment-1915678490 - OMP_NUM_THREADS = 1; }; };