nixos-selfhost/jellyfin.nix
2025-01-14 15:17:47 +01:00

17 lines
280 B
Nix

{config, ...}: let
domain = "jelly.sondell.org";
# derp = "hi";
in {
#
services.jellyfin = {
enable = true;
};
services.nginx.virtualHosts.${domain} = {
locations."/" = {
proxyPass = "http://localhost:8096/";
proxyWebsockets = true;
};
};
}