gitea + jellyfin on homepage

This commit is contained in:
Danilo Reyes 2025-09-18 21:42:48 -06:00
parent 6204b76f83
commit 100a708ce6
3 changed files with 19 additions and 5 deletions

View File

@ -227,6 +227,19 @@
];
};
};
gitea =
let
cfg = config.my.servers.gitea;
in
lib.mkIf (cfg.enable || cfg.enableProxy) {
icon = "${cfg.name}.png";
href = cfg.url;
widget = {
url = cfg.local;
type = cfg.name;
key = "{{HOMEPAGE_VAR_GITEA}}";
};
};
stash =
let
name = "stash";

View File

@ -29,9 +29,10 @@ in
}
{
main = [
{ inherit (services) nextcloud; }
{ inherit (services) plex; }
{ inherit (services) mealie; }
{ inherit (services) jellyfin; }
{ inherit (services) gitea; }
{ inherit (services) nextcloud; }
];
}
]

File diff suppressed because one or more lines are too long