7 lines
172 B
Nix
7 lines
172 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
services.jellyfin.enable = true;
|
||
|
networking.firewall.allowedTCPPorts = [ 8096 8920 ];
|
||
|
networking.firewall.allowedUDPPorts = [ 1900 7359 ];
|
||
|
}
|