This commit is contained in:
2024-09-26 23:50:15 -04:00
commit 36ae02372c
15 changed files with 623 additions and 0 deletions

18
services/jellyfin.nix Normal file
View File

@@ -0,0 +1,18 @@
{ pkgs, config, ... }:
{
environment.systemPackages = with pkgs; [
jellyfin
jellyfin-web
jellyfin-ffmpeg
];
services.jellyfin = {
enable = true;
openFirewall = true;
};
users.users.${config.services.jellyfin.user}.extraGroups = [
"video"
"render"
];
}