configs/appserver/jellyfin.nix
2024-05-23 18:34:38 +02:00

10 lines
205 B
Nix

{ config, pkgs, ... }:
{
services.jellyfin = {
enable = true;
group = "users";
};
networking.firewall.allowedTCPPorts = [ 8096 8920 ];
networking.firewall.allowedUDPPorts = [ 1900 7359 ];
}