Update modules/server/containers/apps/homepage.nix

This commit is contained in:
2026-06-08 12:02:27 +02:00
parent a899fe4c6f
commit 59dd62b9c9

View File

@@ -1,11 +1,22 @@
{ config, containerCfg, pkgs, lib, builder, name,... }: { config, containerCfg, pkgs, lib, builder, name, ... }:
let let
version = "latest"; version = "latest";
serverCfg = config.syscfg.server; serverCfg = config.syscfg.server;
mediaCfg = config.syscfg.media; mediaCfg = config.syscfg.media;
homepageExtra = containerCfg.extra or {};
backgroundImage = if mediaCfg.banner.png != null then mediaCfg.banner.png else mediaCfg.bg; backgroundImage = if mediaCfg.banner.png != null then mediaCfg.banner.png else mediaCfg.bg;
backgroundFileName = builtins.baseNameOf (toString backgroundImage); backgroundFileName = builtins.baseNameOf (toString backgroundImage);
backgroundMount = "/app/public/media/${backgroundFileName}"; backgroundMount = "/app/public/media/${backgroundFileName}";
latitude =
if homepageExtra ? latitude then homepageExtra.latitude
else if homepageExtra ? lat then homepageExtra.lat
else 47.3769;
longitude =
if homepageExtra ? longitude then homepageExtra.longitude
else if homepageExtra ? lon then homepageExtra.lon
else 8.5417;
extraBookmarks = homepageExtra.bookmarks or [];
extraServices = homepageExtra.services or [];
settings = pkgs.writers.writeYAML "settings.yaml" { settings = pkgs.writers.writeYAML "settings.yaml" {
title = "Home"; title = "Home";
@@ -13,20 +24,15 @@ let
startUrl = "https://${containerCfg.subdomain}.${serverCfg.domain}"; startUrl = "https://${containerCfg.subdomain}.${serverCfg.domain}";
background = { background = {
image = "/media/${backgroundFileName}"; image = "/media/${backgroundFileName}";
blur = "xs"; # "", sm, md, xl,...
# saturate = "";
brightness = 50; brightness = 50;
# opacity = 40;
}; };
cardBlur = "md"; cardBlur = "md";
# favicon = ""; favicon = config.syscfg.media.logo.ico;
theme = "dark"; theme = "dark";
color = "slate"; color = "slate";
fullWidth = true; fullWidth = true;
useEqualHeights = true; useEqualHeights = true;
pwa = { pwa = { };
};
layout = { layout = {
Admin = { Admin = {
style = "row"; style = "row";
@@ -43,123 +49,170 @@ let
statusStyle = "dot"; statusStyle = "dot";
hideErrors = true; hideErrors = true;
}; };
widgets = pkgs.writers.writeYAML "widgets.yaml" [ widgets = pkgs.writers.writeYAML "widgets.yaml" [
{openmeteo = { { openmeteo = {
latitude = "47.3769"; latitude = toString latitude;
longitude = "8.5417"; longitude = toString longitude;
timezone = "Europe/Zurich"; timezone = config.time.timeZone;
units = "metric"; units = "metric";
cache = "15"; cache = "15";
};} };
{search = { }
{ search = {
provider = "custom"; provider = "custom";
focus = true; focus = true;
showSearchSuggestions = true; showSearchSuggestions = true;
target = "_blank"; target = "_blank";
} // (lib.optionalAttrs (serverCfg.containers?searxng) { } // (lib.optionalAttrs (serverCfg.containers ? searxng) {
url = "https://${serverCfg.containers.searxng.subdomain}.${serverCfg.domain}/search?q="; url = "https://${serverCfg.containers.searxng.subdomain}.${serverCfg.domain}/search?q=";
suggestionUrl = "https://${serverCfg.containers.searxng.subdomain}.${serverCfg.domain}/autocompleter?q="; suggestionUrl = "https://${serverCfg.containers.searxng.subdomain}.${serverCfg.domain}/autocompleter?q=";
}); });
} }
{stocks = { { stocks = {
provider = "finnhub"; provider = "finnhub";
color = true; color = true;
cache = 15; cache = 15;
watchlist = containerCfg.extra.stocks or []; watchlist = homepageExtra.stocks or [];
};
};} }
]; ];
bookmarks = pkgs.writers.writeYAML "bookmarks.yaml" [ bookmarks = pkgs.writers.writeYAML "bookmarks.yaml" (extraBookmarks);
]; services = pkgs.writers.writeYAML "services.yaml" ([
services = pkgs.writers.writeYAML "services.yaml" [ { Media = lib.flatten [
{Media = lib.flatten [ (lib.optional (serverCfg.containers ? jellyfin) {
(lib.optional (serverCfg.containers?jellyfin) { Jellyfin = {
Jellyfin={
icon = "jellyfin.png"; icon = "jellyfin.png";
href = "https://${serverCfg.containers.jellyfin.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.jellyfin.subdomain}.${serverCfg.domain}";
widget = { widget = {
type="jellyfin"; type = "jellyfin";
url = "http://jellyfin-server:8096"; url = "http://jellyfin-server:8096";
key = "{{HOMEPAGE_VAR_JELLYFIN_API}}"; key = "{{HOMEPAGE_VAR_JELLYFIN_API}}";
}; };
}; };
}) })
(lib.optional (serverCfg.containers?invidious) { (lib.optional (serverCfg.containers ? invidious) {
Invidious={ Invidious = {
icon = "invidious.png"; icon = "invidious.png";
href = "https://${serverCfg.containers.invidious.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.invidious.subdomain}.${serverCfg.domain}";
}; };
}) })
(lib.optional (serverCfg.containers?miniflux) { (lib.optional (serverCfg.containers ? calibre) {
Miniflux={ Calibre = {
icon = "calibre.png";
href = "https://${serverCfg.containers.calibre.subdomain}.${serverCfg.domain}";
};
})
(lib.optional (serverCfg.containers ? freshrss) {
FreshRSS = {
icon = "freshrss.png";
href = "https://${serverCfg.containers.freshrss.subdomain}.${serverCfg.domain}";
};
})
(lib.optional (serverCfg.containers ? miniflux) {
Miniflux = {
icon = "miniflux.png"; icon = "miniflux.png";
href = "https://${serverCfg.containers.miniflux.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.miniflux.subdomain}.${serverCfg.domain}";
widget = { widget = {
type="miniflux"; type = "miniflux";
url = "http://miniflux-server"; url = "http://miniflux-server";
key = "{{HOMEPAGE_VAR_MINIFLUX_API}}"; key = "{{HOMEPAGE_VAR_MINIFLUX_API}}";
}; };
}; };
}) })
];} (lib.optional (serverCfg.containers ? suwayomi) {
{Cloud = lib.flatten [ Suwayomi = {
(lib.optional (serverCfg.containers?nextcloud) { icon = "suwayomi.png";
Nextcloud={ href = "https://${serverCfg.containers.suwayomi.subdomain}.${serverCfg.domain}";
};
})
];
}
{ Cloud = lib.flatten [
(lib.optional (serverCfg.containers ? nextcloud) {
Nextcloud = {
icon = "nextcloud.png"; icon = "nextcloud.png";
href = "https://${serverCfg.containers.nextcloud.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.nextcloud.subdomain}.${serverCfg.domain}";
widget = { widget = {
type="nextcloud"; type = "nextcloud";
url = "http://nextcloud-server:80"; url = "http://nextcloud-server:80";
key = "{{HOMEPAGE_VAR_NEXTCLOUD_API}}"; key = "{{HOMEPAGE_VAR_NEXTCLOUD_API}}";
}; };
}; };
}) })
(lib.optional (serverCfg.containers?ethercalc) { (lib.optional (serverCfg.containers ? ethercalc) {
Ethercalc={ Ethercalc = {
icon = "ethercalc.png"; icon = "ethercalc.png";
href = "https://${serverCfg.containers.ethercalc.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.ethercalc.subdomain}.${serverCfg.domain}";
}; };
}) })
(lib.optional (serverCfg.containers?etherpad) { (lib.optional (serverCfg.containers ? etherpad) {
Etherpad={ Etherpad = {
icon = "etherpad.png"; icon = "etherpad.png";
href = "https://${serverCfg.containers.etherpad.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.etherpad.subdomain}.${serverCfg.domain}";
}; };
}) })
(lib.optional (serverCfg.containers?immich) { (lib.optional (serverCfg.containers ? collabora && false) {
immich={ Collabora = {
icon = "microsoft-office.png";
href = "https://${serverCfg.containers.collabora.subdomain}.${serverCfg.domain}";
};
})
(lib.optional (serverCfg.containers ? immich) {
Immich = {
icon = "immich.png"; icon = "immich.png";
href = "https://${serverCfg.containers.immich.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.immich.subdomain}.${serverCfg.domain}";
widget = { widget = {
type="immich"; type = "immich";
url = "http://immich-server:80"; url = "http://immich-server:80";
key = "{{HOMEPAGE_VAR_IMMICH_API}}"; key = "{{HOMEPAGE_VAR_IMMICH_API}}";
version = "2"; version = "2";
}; };
}; };
}) })
];} ];
{Dev = lib.flatten [ }
(lib.optional (serverCfg.containers?gitea) { { Home = lib.flatten [
Gitea={ (lib.optional (serverCfg.containers ? homeassistant) {
icon = "gitea.png"; "Home Assistant" = {
href = "https://${serverCfg.containers.gitea.subdomain}.${serverCfg.domain}"; icon = "home-assistant.png";
# widget = { href = "https://${serverCfg.containers.homeassistant.subdomain}.${serverCfg.domain}";
# type="gitea";
# url = "http://gitea-server:8080";
# key = "{{HOMEPAGE_VAR_GITEA_API}}";
# };
}; };
}) })
];} (lib.optional (serverCfg.containers ? openhab) {
{Admin = #lib.flatten [ openHAB = {
#({permissions.groups = ["admin"];}) icon = "openhab.png";
#({services = href = "https://${serverCfg.containers.openhab.subdomain}.${serverCfg.domain}";
lib.flatten [ };
(lib.optional (serverCfg.containers?traefik) { })
Traefik={ (lib.optional (serverCfg.containers ? frigate) {
Frigate = {
icon = "frigate.png";
href = "https://${serverCfg.containers.frigate.subdomain}.${serverCfg.domain}";
};
})
];
}
{ Dev = lib.flatten [
(lib.optional (serverCfg.containers ? gitea) {
Gitea = {
icon = "gitea.png";
href = "https://${serverCfg.containers.gitea.subdomain}.${serverCfg.domain}";
};
})
(lib.optional (serverCfg.containers ? trmnl) {
TRMNL = {
icon = "terminal.png";
href = "https://${serverCfg.containers.trmnl.subdomain}.${serverCfg.domain}";
};
})
];
}
{ Admin = lib.flatten [
(lib.optional (serverCfg.containers ? traefik) {
Traefik = {
icon = "traefik.png"; icon = "traefik.png";
href = "https://${serverCfg.containers.traefik.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.traefik.subdomain}.${serverCfg.domain}";
widget = { widget = {
@@ -168,8 +221,8 @@ let
}; };
}; };
}) })
(lib.optional (serverCfg.containers?authentik) { (lib.optional (serverCfg.containers ? authentik) {
Authentik={ Authentik = {
icon = "authentik.png"; icon = "authentik.png";
href = "https://${serverCfg.containers.authentik.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.authentik.subdomain}.${serverCfg.domain}";
widget = { widget = {
@@ -180,26 +233,26 @@ let
}; };
}; };
}) })
(lib.optional (serverCfg.containers?umami) { (lib.optional (serverCfg.containers ? umami) {
Umami={ Umami = {
icon = "umami.png"; icon = "umami.png";
href = "https://${serverCfg.containers.umami.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.umami.subdomain}.${serverCfg.domain}";
}; };
}) })
(lib.optional (serverCfg.containers?influx) { (lib.optional (serverCfg.containers ? influx) {
Influx={ Influx = {
icon = "grafana.png"; icon = "grafana.png";
href = "https://${serverCfg.containers.influx.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.influx.subdomain}.${serverCfg.domain}";
}; };
}) })
(lib.optional (serverCfg.containers?handbrake) { (lib.optional (serverCfg.containers ? handbrake) {
Handbrake={ Handbrake = {
icon = "handbrake.png"; icon = "handbrake.png";
href = "https://${serverCfg.containers.handbrake.subdomain}.${serverCfg.domain}"; href = "https://${serverCfg.containers.handbrake.subdomain}.${serverCfg.domain}";
}; };
}) })
(lib.optional (serverCfg.containers?transmission) { (lib.optional (serverCfg.containers ? transmission) {
Transmission={ Transmission = {
icon = "transmission.png"; icon = "transmission.png";
href = "https://${serverCfg.containers.transmission.subdomain}.${serverCfg.domain}/transmission"; href = "https://${serverCfg.containers.transmission.subdomain}.${serverCfg.domain}/transmission";
widget = { widget = {
@@ -209,60 +262,64 @@ let
}; };
}; };
}) })
(lib.optional (serverCfg.containers?servarr) ( (lib.optional (serverCfg.containers ? selfmark) {
Selfmark = {
icon = "link.png";
href = "https://${serverCfg.containers.selfmark.subdomain}.${serverCfg.domain}";
};
})
(lib.optional (serverCfg.containers ? servarr) (
let let
modules = serverCfg.containers.servarr.extra.modules or ["prowlarr" "sonarr" "radarr" "flaresolverr" ]; modules = serverCfg.containers.servarr.extra.modules or [ "prowlarr" "sonarr" "radarr" "flaresolverr" ];
in in
(lib.optional (builtins.elem "sonarr" modules) { (lib.optional (builtins.elem "sonarr" modules) {
Sonarr={ Sonarr = {
icon = "sonarr.png"; icon = "sonarr.png";
href = "https://${serverCfg.containers.servarr.subdomain}.${serverCfg.domain}/sonarr"; href = "https://${serverCfg.containers.servarr.subdomain}.${serverCfg.domain}/sonarr";
widget = { widget = {
type = "sonarr"; type = "sonarr";
url = "http://servarr-sonarr:8989"; url = "http://servarr-sonarr:8989";
key = "{{HOMEPAGE_VAR_SONARR_API}}"; key = "{{HOMEPAGE_VAR_SONARR_API}}";
}; };
}; };
}) ++ (lib.optional (builtins.elem "radarr" modules) { })
Radarr={ ++ (lib.optional (builtins.elem "radarr" modules) {
Radarr = {
icon = "radarr.png"; icon = "radarr.png";
href = "https://${serverCfg.containers.servarr.subdomain}.${serverCfg.domain}/radarr"; href = "https://${serverCfg.containers.servarr.subdomain}.${serverCfg.domain}/radarr";
widget = { widget = {
type = "radarr"; type = "radarr";
url = "http://servarr-radarr:8989"; url = "http://servarr-radarr:8989";
key = "{{HOMEPAGE_VAR_RADARR_API}}"; key = "{{HOMEPAGE_VAR_RADARR_API}}";
}; };
}; };
}) ++ (lib.optional (builtins.elem "lidarr" modules) { })
Lidarr={ ++ (lib.optional (builtins.elem "lidarr" modules) {
Lidarr = {
icon = "lidarr.png"; icon = "lidarr.png";
href = "https://${serverCfg.containers.servarr.subdomain}.${serverCfg.domain}/lidarr"; href = "https://${serverCfg.containers.servarr.subdomain}.${serverCfg.domain}/lidarr";
widget = { widget = {
type = "lidarr"; type = "lidarr";
url = "http://servarr-lidarr:8989"; url = "http://servarr-lidarr:8989";
key = "{{HOMEPAGE_VAR_LIDARR_API}}"; key = "{{HOMEPAGE_VAR_LIDARR_API}}";
}; };
}; };
}) ++ (lib.optional (builtins.elem "prowlarr" modules) { })
Prowlarr={ ++ (lib.optional (builtins.elem "prowlarr" modules) {
Prowlarr = {
icon = "prowlarr.png"; icon = "prowlarr.png";
href = "https://${serverCfg.containers.servarr.subdomain}.${serverCfg.domain}/prowlarr"; href = "https://${serverCfg.containers.servarr.subdomain}.${serverCfg.domain}/prowlarr";
widget = { widget = {
type = "prowlarr"; type = "prowlarr";
url = "http://servarr-prowlarr:8989"; url = "http://servarr-prowlarr:8989";
key = "{{HOMEPAGE_VAR_PROWLARR_API}}"; key = "{{HOMEPAGE_VAR_PROWLARR_API}}";
}; };
}; };
}) })
# Bazarr
)) ))
];}#)];}
]; ];
}
] ++ extraServices);
in { in {
runtime = { runtime = {
containers = { containers = {
@@ -271,7 +328,7 @@ in {
image = "ghcr.io/gethomepage/homepage:${version}"; image = "ghcr.io/gethomepage/homepage:${version}";
port = 3000; port = 3000;
extraEnv = { extraEnv = {
HOMEPAGE_VAR_TITLE="${serverCfg.domain}"; HOMEPAGE_VAR_TITLE = "${serverCfg.domain}";
HOMEPAGE_ALLOWED_HOSTS = "${containerCfg.subdomain}.${serverCfg.domain},${builder.host}"; HOMEPAGE_ALLOWED_HOSTS = "${containerCfg.subdomain}.${serverCfg.domain},${builder.host}";
}; };
extraLabels = { extraLabels = {