nix-config/features/calibre-web.nix

12 lines
155 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;
options = {
enableBookUploading = true;
};
};
}