Global: add jellyfin

This commit is contained in:
blahai 2024-12-16 18:17:09 +02:00
parent a22ad00b7e
commit f34815dfb1
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc
2 changed files with 8 additions and 0 deletions

View file

@ -3,5 +3,6 @@
imports = [
./pipewire.nix
./tailscale.nix
./jellyfin.nix
];
}

View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
services.jellyfin = {
enable = true;
openFirewall = true;
dataDir = "/mnt/zootfs/Media/jellyfin";
};
}