nixos/frigate: allow GPU use for video acceleration

The `render` group is required to acces the graphic cards decoding,
encoding and transcoding capabilities.

It is required for using fancy `ffmpeg.hwaccel-args` values, like
`preset-vaapi`.
This commit is contained in:
Martin Weinelt
2024-11-22 17:59:36 +01:00
parent 2b56a916ca
commit 7411b85629
+1 -1
View File
@@ -566,7 +566,7 @@ in
User = "frigate";
Group = "frigate";
SupplementaryGroups = optionals withCoral [ "coral" ];
SupplementaryGroups = [ "render" ] ++ optionals withCoral [ "coral" ];
UMask = "0027";