forked from mirrors/nixpkgs
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 = {
|
||||
User = "calibre-server";
|
||||
Restart = "always";
|
||||
ExecStart = "${pkgs.calibre}/bin/calibre-server --with-library=${cfg.libraryDir}";
|
||||
ExecStart = "${pkgs.calibre}/bin/calibre-server ${cfg.libraryDir}";
|
||||
};
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue