feat: Homepage

This commit is contained in:
marthsincemelee
2026-04-20 14:46:44 +02:00
parent e1ea5b03dc
commit 191e860455
14 changed files with 259 additions and 25 deletions
+11 -1
View File
@@ -2,7 +2,8 @@
{ config, lib, ... }:
let
cfg = config.my.profiles.jellyseerr;
inherit (config.networking) domain;
hostName = config.networking.hostName;
port = 5055;
in
{
options.my.profiles.jellyseerr = with lib; {
@@ -15,6 +16,15 @@ in
openFirewall = true;
};
my.homepage.services = [
{
group = "Media";
name = "Jellyseerr";
description = "Media requests";
href = "http://${hostName}:${toString port}";
}
];
systemd.services.jellyseerr = {
after = [ "network-online.target" ];
};