feat: install karakeep

This commit is contained in:
wi11-holdsworth 2025-12-15 19:54:03 +11:00
parent d3868b69c4
commit bf13c50f4c
2 changed files with 21 additions and 0 deletions

View file

@ -11,6 +11,7 @@
"homepage-dashboard"
"immich"
"jellyfin"
"karakeep"
"lidarr"
"miniflux"
"nginx"

View file

@ -0,0 +1,20 @@
let
port = "5014";
in
{
services = {
karakeep = {
enable = true;
extraEnvironment = {
PORT = port;
DISABLE_NEW_RELEASE_CHECK = "true";
};
};
nginx.virtualHosts."karakeep.fi33.buzz" = {
forceSSL = true;
useACMEHost = "fi33.buzz";
locations."/".proxyPass = "http://localhost:${port}";
};
};
}