From e618f396c08864de9fa29cdc1c8f9593659a98d8 Mon Sep 17 00:00:00 2001 From: soraefir Date: Mon, 8 Jun 2026 01:12:40 +0200 Subject: [PATCH] fix paths --- modules/server/containers/apps/calibre.nix | 2 +- modules/server/containers/apps/selfmark.nix | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/server/containers/apps/calibre.nix b/modules/server/containers/apps/calibre.nix index baff5dd..8e2757a 100644 --- a/modules/server/containers/apps/calibre.nix +++ b/modules/server/containers/apps/calibre.nix @@ -28,7 +28,7 @@ in { overrides = { volumes = [ "${serverCfg.path.book.path}:/calibre-library" - "${serverCfg.path.download.path}/book:/cwa-book-ingest" + "${serverCfg.path.dlComplete.path}:/cwa-book-ingest" ]; }; }; diff --git a/modules/server/containers/apps/selfmark.nix b/modules/server/containers/apps/selfmark.nix index 4666038..7e3f367 100644 --- a/modules/server/containers/apps/selfmark.nix +++ b/modules/server/containers/apps/selfmark.nix @@ -7,7 +7,7 @@ in { paths = [{ path = "${serverCfg.path.config.path}/selfmark/"; owner = "1000:1000"; - mode = "0444"; + mode = "0755"; }]; containers = { @@ -80,8 +80,8 @@ in { }; overrides = { volumes = [ - "${serverCfg.path.dlComplete.path}:/books:rw" - "${serverCfg.path.book.path}:/output:rw" + "${serverCfg.path.dlIncomplete.path}:/books:rw" + "${serverCfg.path.dlComplete.path}:/output:rw" "${serverCfg.path.config.path}/selfmark:/config:rw" ]; };