Move calibre-web to sys modules

This commit is contained in:
2025-09-01 23:40:19 +03:00
parent 8fbee98d3f
commit 14d69d5a2d
2 changed files with 15 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
{ pkgsStable, lib, ... }:
{
services = {
calibre-web = {
listen.port = lib.mkDefault 8091;
listen.ip = lib.mkDefault "0.0.0.0";
package = pkgsStable.calibre-web;
options = {
enableBookUploading = true;
enableBookConversion = true;
};
user = lib.mkDefault "books";
};
};
}