ma bureauautomation: add jellyfin

This commit is contained in:
Thierry Hammer 2023-01-11 17:13:59 +01:00 committed by makefu
parent 842a015a3c
commit c69d428354

View file

@ -0,0 +1,8 @@
{ lib, config, ... }:
{
services.jellyfin.enable = true;
services.jellyfin.openFirewall = true;
state = [ "/var/lib/jellyfin" ];
users.users.${config.services.jellyfin.user}.extraGroups = [ "video" "render" ];
}