Add Jellyfin

This commit is contained in:
Victor Mignot 2023-11-23 21:55:37 +01:00
parent dc68d74b17
commit 81ddbfa7df
Signed by: dala
GPG key ID: 5E7F2CE1BEAFED3D
2 changed files with 10 additions and 0 deletions

View file

@ -25,6 +25,10 @@
} }
]; ];
imports = [
./jellyfin.nix
];
swapDeviceUUID = "a7c628ab-c5cb-4094-89d0-19b153fbead4"; swapDeviceUUID = "a7c628ab-c5cb-4094-89d0-19b153fbead4";
server.networking.enableSSH = true; server.networking.enableSSH = true;

View file

@ -0,0 +1,6 @@
{
services.jellyfin.enable = true;
networking.firewall.allowedTCPPorts = [
8096
];
}