about summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2017-08-30 21:14:45 -0700
committerRyan Mulligan <ryan@ryantm.com>2017-08-30 21:14:45 -0700
commit39a982dc3ecc398f01c9ab382e842873b58e9f4b (patch)
tree9dbc3dc4d34b5bf0966c83e4e72028bc639f0469 /nixos/modules/services
parentfb182034500aa71de27a86439f349f3654bae515 (diff)
downloadnixlib-39a982dc3ecc398f01c9ab382e842873b58e9f4b.tar
nixlib-39a982dc3ecc398f01c9ab382e842873b58e9f4b.tar.gz
nixlib-39a982dc3ecc398f01c9ab382e842873b58e9f4b.tar.bz2
nixlib-39a982dc3ecc398f01c9ab382e842873b58e9f4b.tar.lz
nixlib-39a982dc3ecc398f01c9ab382e842873b58e9f4b.tar.xz
nixlib-39a982dc3ecc398f01c9ab382e842873b58e9f4b.tar.zst
nixlib-39a982dc3ecc398f01c9ab382e842873b58e9f4b.zip
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.
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/misc/calibre-server.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/calibre-server.nix b/nixos/modules/services/misc/calibre-server.nix
index a920aa22ccdf..6b19f780ec0c 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}";
         };
 
       };