nixos/calibre-server: fix ExecStart call
calibre-server changed the way you specify the library from using --with-library to just allowing the directory to be specified. See https://manual.calibre-ebook.com/generated/en/calibre-server.html for details.
This commit is contained in:
parent
fb18203450
commit
39a982dc3e
@ -42,7 +42,7 @@ in
|
|||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
User = "calibre-server";
|
User = "calibre-server";
|
||||||
Restart = "always";
|
Restart = "always";
|
||||||
ExecStart = "${pkgs.calibre}/bin/calibre-server --with-library=${cfg.libraryDir}";
|
ExecStart = "${pkgs.calibre}/bin/calibre-server ${cfg.libraryDir}";
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user