{ config, pkgs, lib, ... }: { services.jellyfin.enable = true; services.jellyfin.user = "xqtc"; services.nginx.virtualHosts."jellyfin.fritz.box" = { locations."/" = { extraConfig = '' proxy_set_header Host $host; ''; proxyPass = "http://127.0.0.1:8096"; proxyWebsockets = true; }; }; }