nuc: add jellyfin

This commit is contained in:
Rouven Seifert 2024-05-03 18:23:21 +02:00
parent 3e48779929
commit 29223b9060
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 14 additions and 7 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
imports =
[
@ -8,6 +8,7 @@
./modules/adguard
./modules/backup
./modules/keycloak
./modules/jellyfin
./modules/cache
./modules/matrix
./modules/mautrix-telegram

View file

@ -0,0 +1,6 @@
{
services.jellyfin = {
enable = true;
openFirewall = true;
};
}