Add calibre book services

This commit is contained in:
Felix Albrigtsen 2023-06-09 22:34:46 +02:00
parent fc589d08e3
commit bb6b8f0518
3 changed files with 38 additions and 15 deletions

View File

@ -23,21 +23,8 @@
./services/gitea.nix ./services/gitea.nix
./services/hedgedoc.nix ./services/hedgedoc.nix
./services/vaultwarden.nix ./services/vaultwarden.nix
./services/calibre.nix
# ./services/code-server.nix # ./services/code-server.nix
# TODO:
# x Boot
# x Mount ZFS
# x Monitoring server
# x Podman
# x Flame
# x Transmission
# x Jellyfin
# x NFS imports
# x NFS exports
# - FreeBSD VM
# - Kali VM
# x Kerberos / IPA / Kanidm
# - Backup system
]; ];
networking = { networking = {

View File

@ -11,8 +11,10 @@
services.nfs.server = { services.nfs.server = {
enable = true; enable = true;
exports = '' exports = ''
/export 192.168.10.4(rw,fsid=0,no_subtree_check) /export 192.168.10.4(rw,fsid=0,no_subtree_check) 192.168.10.5(rw,fsid=0,no_subtree_check)
/export/riker-backup 192.168.10.4(rw,nohide,no_subtree_check,no_root_squash) /export/riker-backup 192.168.10.4(rw,nohide,no_subtree_check,no_root_squash)
/export/doyle-backup 192.168.10.5(rw,nohide,no_subtree_check,no_root_squash)
''; '';
}; };

View File

@ -0,0 +1,34 @@
{ config, lib, pkgs, ... }:
let
domain = "books.home.feal.no";
storage = "/tank/media/books";
cfg = config.services.calibre-web;
in {
services = {
nginx.virtualHosts.${domain} = {
locations."/".proxyPass =
"http://${cfg.listen.ip}:${toString cfg.listen.port}";
locations."/opds".proxyPass =
"http://${cfg.listen.ip}:${toString cfg.listen.port}";
};
calibre-server = {
enable = true;
user = "calibre-server";
libraries = [ storage ];
};
calibre-web = {
enable = true;
user = "calibre-server";
listen.ip = "127.0.0.1";
listen.port = 5010;
options = {
calibreLibrary = storage;
enableBookConversion = true;
enableBookUploading = true;
};
};
};
}