nix/nixos/services/jellyfin.nix
Tristan 123e7088f5 alpine: many changes
- updates
- snapserver
- graphana dashboards
- loki
- ddclient
- arr suite, jellyseer
- mautrix fixes
2025-01-18 00:18:11 +00:00

14 lines
305 B
Nix

{
services.jellyfin = {
enable = true;
group = "media"; # access to user stuff
};
services.nginx.virtualHosts."movies.tristans.cloud" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:8096";
proxyWebsockets = true;
};
};
}