feat(APPA): add jellyfin

This commit is contained in:
Jacob Bachmann 2024-10-02 20:04:33 +02:00
parent 5193b21ffd
commit aac276e154
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
4 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ 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;
};
}