14 lines
280 B
Nix
14 lines
280 B
Nix
{ config, ... }:
|
|
{
|
|
# HTTP Traffic: 8096
|
|
# HTTPS Traffic: 8920
|
|
# Service Discovery: 1900
|
|
# Client Discovery: 7359 UDP
|
|
|
|
users.groups."${config.services.jellyfin.group}".members = [ "nextcloud" ];
|
|
|
|
services.jellyfin = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
}
|