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" ]; };