feat(faunus-ater): Setup komga, for reading books and manga

This commit is contained in:
Malte Tammena 2023-02-13 21:34:30 +01:00
parent 4102cd816e
commit 79cefb6244

View file

@ -252,6 +252,18 @@ in {
};
};
# === Komga, for my reading needs ===
services.komga = {
enable = true;
stateDir = "/data/dirty/komga";
};
services.nginx.virtualHosts."read.home" = mkVirtHost {
locations."/" = {
proxyPass = "http://[::1]:${builtins.toString config.services.komga.port}";
proxyWebsockets = true;
};
};
# === Photoprism ===
services.photoprism = {
enable = true;