I am trying to setup a calibre-server to sync my ebook collection, but I always get the error failed to determine user credentials: No such process
which stops the calibre-server service.
This is my current config
let
user = "calibre";
group = "calibre";
in
services = {
calibre-server = {
enable = true;
host = "0.0.0.0";
port = 8194;
libraries = [ "/var/lib/calibre-server" ];
auth.enable = false;
inherit user group;
};
calibre-web = {
enable = true;
listen = {
ip = "0.0.0.0";
port = 8094;
};
options = {
enableBookConversion = true;
enableBookUploading = true;
reverseProxyAuth.enable = true;
calibreLibrary = "/var/lib/calibre-server";
};
inherit user group;
};
};
Does anyone have an idea how I could solve this problem?