mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
20 lines
367 B
Nix
Executable File
20 lines
367 B
Nix
Executable File
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
services.calibre-web = {
|
|
enable = true;
|
|
group = "users";
|
|
user = "${config.xlib.device.username}";
|
|
options = {
|
|
calibreLibrary = "${config.xlib.dirs.calibre-library}";
|
|
enableBookUploading = true;
|
|
enableKepubify = false;
|
|
};
|
|
listen.ip = "0.0.0.0";
|
|
listen.port = 8083;
|
|
openFirewall = true;
|
|
};
|
|
}
|