nix-config/features/multimedia/calibre-web.nix

14 lines
211 B
Nix
Raw Normal View History

2024-07-15 16:50:14 +02:00
{ config, ... }:
2024-07-15 16:27:23 +02:00
{
services.calibre-web = {
enable = true;
openFirewall = true;
2024-07-22 11:29:41 +02:00
listen.ip = "0.0.0.0";
2024-07-15 16:27:23 +02:00
options = {
enableBookUploading = true;
2024-07-22 11:04:32 +02:00
enableKepubify = true;
2024-07-15 16:27:23 +02:00
};
};
}