add jellyfin

This commit is contained in:
Anish Lakhwara
2023-04-04 23:34:47 +10:00
parent 3e7273f83c
commit 1ad6a07094
2 changed files with 11 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
services.jellyfin = {
enable = true;
user = "jellyfin";
group = "video";
openFirewall = true; # only for defaults
};
networking.firewall.allowedTCPPorts = [ 8181 ];
}