nixos-selfhost/jellyfin.nix

22 lines
285 B
Nix
Raw Normal View History

2024-03-01 22:15:55 +01:00
{ config, ... }:
let
domain = "jelly.sondell.org";
# derp = "hi";
in
{
#
services.jellyfin = {
enable = true;
};
services.nginx.virtualHosts.${domain} = {
locations."/" = {
proxyPass = "http://localhost:8096/";
proxyWebsockets = true;
};
};
}