manatee: Add services homepage with auto-discovery

Add a homepage module that generates a static landing page served on
port 80 via nginx. Each service module registers itself via the shared
mod.homepage.services option, so enabling a module automatically adds
it to the page.
This commit is contained in:
Alexander Heldt
2026-02-28 21:46:44 +01:00
parent f2130be7e4
commit cd83e17d46
10 changed files with 165 additions and 0 deletions

View File

@@ -10,6 +10,12 @@ in
};
config = lib.mkIf enabled {
mod.homepage.services = [{
name = "Calibre-Web";
port = 8083;
description = "E-book library";
}];
services = {
calibre-web = {
enable = true;