mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 21:29:33 +01:00
14 lines
211 B
Nix
14 lines
211 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.calibre-web = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
listen.ip = "0.0.0.0";
|
|
options = {
|
|
enableBookUploading = true;
|
|
enableKepubify = true;
|
|
};
|
|
};
|
|
}
|