expand homer

This commit is contained in:
Chris Kruining 2025-09-03 17:44:01 +02:00
parent 6d7867b45c
commit a91afd3b0a
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -52,6 +52,12 @@ in
{
name = "Media";
items = [
{
name = "Jellyfin";
tag = "app";
url = "http://${config.networking.hostName}:8096";
}
{
name = "Radarr";
tag = "app";
@ -63,6 +69,25 @@ in
tag = "app";
url = "http://${config.networking.hostName}:${builtins.toString config.services.sonarr.settings.server.port}";
}
{
name = "Lidarr";
tag = "app";
url = "http://${config.networking.hostName}:${builtins.toString config.services.lidarr.settings.server.port}";
}
{
name = "qBitTorrent";
tag = "app";
url = "http://${config.networking.hostName}:${builtins.toString config.services.qbittorrent.webuiPort}";
}
{
name = "SabNZB";
tag = "app";
url = "http://${config.networking.hostName}:8080";
}
];
}
];