jellyfin on nas

This commit is contained in:
mjallen18
2024-02-18 17:49:41 -06:00
parent b9cbddf44c
commit 78e3bae2cc
2 changed files with 44 additions and 13 deletions

14
nas-apps/jellyfin.nix Normal file
View File

@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
environment.systemPackages = [
pkgs.jellyfin
pkgs.jellyfin-web
pkgs.jellyfin-ffmpeg
];
services.jellyfin = {
enable = true;
openFirewall = true;
};
}