From 39a982dc3ecc398f01c9ab382e842873b58e9f4b Mon Sep 17 00:00:00 2001 From: Ryan Mulligan Date: Wed, 30 Aug 2017 21:14:45 -0700 Subject: [PATCH] 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. --- nixos/modules/services/misc/calibre-server.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/calibre-server.nix b/nixos/modules/services/misc/calibre-server.nix index a920aa22ccd..6b19f780ec0 100644 --- a/nixos/modules/services/misc/calibre-server.nix +++ b/nixos/modules/services/misc/calibre-server.nix @@ -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}"; }; };