diff --git a/hosts/rico0/services/apps/default.nix b/hosts/rico0/services/apps/default.nix index 61ca3ac..2608e5b 100644 --- a/hosts/rico0/services/apps/default.nix +++ b/hosts/rico0/services/apps/default.nix @@ -4,7 +4,6 @@ _: { ./adtya.xyz.nix ./dendrite.nix ./forgejo.nix - ./jellyfin.nix ./ntfy.nix ./proofs.nix ./wiki.nix diff --git a/hosts/rico0/services/apps/jellyfin.nix b/hosts/rico0/services/apps/jellyfin.nix deleted file mode 100644 index eb1b227..0000000 --- a/hosts/rico0/services/apps/jellyfin.nix +++ /dev/null @@ -1,17 +0,0 @@ -_: -let - inherit (import ../../../shared/caddy-helpers.nix) logFormat; - domainName = "watch.acomputer.lol"; -in -{ - services = { - caddy.virtualHosts = { - "${domainName}" = { - inherit logFormat; - extraConfig = '' - reverse_proxy 10.10.10.14:8096 - ''; - }; - }; - }; -}