From 2bfc37f8d8fff1c9384c5e0cd07b746d42334874 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Wed, 7 Oct 2020 02:03:02 +0200 Subject: [PATCH] feat(jellyfin): add jellyfin user to video group --- services/jellyfin.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/jellyfin.nix b/services/jellyfin.nix index f2e90d5..1432e3d 100644 --- a/services/jellyfin.nix +++ b/services/jellyfin.nix @@ -4,4 +4,7 @@ services.jellyfin.enable = true; services.jellyfin.user = "felschr"; networking.firewall.allowedTCPPorts = [ 8920 8096 1900 7359 ]; + + # for hardware acceleration + users.users.jellyfin.extraGroups = [ "video" ]; }