2025-04-28 00:36:43 +01:00
|
|
|
{ config }:
|
|
|
|
|
2025-04-27 20:58:35 +01:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"Media" = [
|
|
|
|
{
|
|
|
|
"Jellyfin" = {
|
|
|
|
href = "https://jellyfin.oliverdavies.uk";
|
2025-04-28 00:36:43 +01:00
|
|
|
icon = "jellyfin";
|
|
|
|
description = "The Free Software Media System";
|
|
|
|
siteMonitor = "http://localhost:8096";
|
2025-04-27 20:58:35 +01:00
|
|
|
};
|
|
|
|
}
|
2025-04-28 00:53:26 +01:00
|
|
|
|
2025-04-28 01:58:11 +01:00
|
|
|
{
|
|
|
|
"Immich" = {
|
|
|
|
href = "https://photos.oliverdavies.uk";
|
|
|
|
icon = "immich";
|
|
|
|
description = "Self-hosted photo and video management solution";
|
|
|
|
siteMonitor = "http://localhost:${toString config.services.immich.port}";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2025-04-28 00:53:26 +01:00
|
|
|
{
|
|
|
|
"Audiobookshelf" = {
|
|
|
|
href = "https://audiobookshelf.oliverdavies.uk";
|
|
|
|
icon = "audiobookshelf";
|
|
|
|
description = "Self-hosted audiobook and podcast server";
|
|
|
|
siteMonitor = "http://localhost:4001";
|
|
|
|
};
|
|
|
|
}
|
2025-04-27 20:58:35 +01:00
|
|
|
];
|
|
|
|
}
|
2025-04-28 00:26:30 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
"Services" = [
|
2025-04-28 21:26:56 +01:00
|
|
|
{
|
|
|
|
"Uptime Kuma" = {
|
|
|
|
description = "A fancy self-hosted monitoring tool";
|
|
|
|
href = "https://uptime.oliverdavies.uk";
|
|
|
|
icon = "uptime-kuma";
|
|
|
|
siteMonitor = "http://localhost:${toString config.services.uptime-kuma.settings.PORT}";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2025-04-28 00:26:30 +01:00
|
|
|
{
|
2025-04-28 00:36:43 +01:00
|
|
|
"Paperless-ngx" =
|
|
|
|
let
|
|
|
|
cfg = config.services.paperless;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
description = "Document management system";
|
|
|
|
href = cfg.settings.PAPERLESS_URL;
|
|
|
|
icon = "paperless";
|
|
|
|
siteMonitor = "http://localhost:${toString cfg.port}";
|
|
|
|
};
|
2025-04-28 00:26:30 +01:00
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
2025-04-27 20:58:35 +01:00
|
|
|
]
|