Merge pull request #54 from wi11-holdsworth/enhancement/52
enhancement/52
This commit is contained in:
commit
e211bca3ff
2 changed files with 22 additions and 0 deletions
|
|
@ -11,6 +11,7 @@
|
||||||
"homepage-dashboard"
|
"homepage-dashboard"
|
||||||
"immich"
|
"immich"
|
||||||
"jellyfin"
|
"jellyfin"
|
||||||
|
"karakeep"
|
||||||
"lidarr"
|
"lidarr"
|
||||||
"miniflux"
|
"miniflux"
|
||||||
"radicale"
|
"radicale"
|
||||||
|
|
@ -20,6 +21,7 @@
|
||||||
"prowlarr"
|
"prowlarr"
|
||||||
"qbittorrent"
|
"qbittorrent"
|
||||||
"radarr"
|
"radarr"
|
||||||
|
"radicale"
|
||||||
"sonarr"
|
"sonarr"
|
||||||
"syncthing"
|
"syncthing"
|
||||||
"vaultwarden"
|
"vaultwarden"
|
||||||
|
|
|
||||||
20
modules/nixos/features/karakeep.nix
Normal file
20
modules/nixos/features/karakeep.nix
Normal 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}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue