configs/appserver/jellyfin.nix
2024-05-20 12:24:36 +02:00

7 lines
172 B
Nix

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