about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorGiulio De Pasquale <peperunas@users.noreply.github.com>2022-03-09 19:44:06 +0000
committerGitHub <noreply@github.com>2022-03-09 19:44:06 +0000
commit3b944f4c0cc6bfe1777909aa692028a9df8311ed (patch)
tree2aef1014c17837fc493aab44762200ae79b2bdd7 /nixos/modules
parent47ebcd1bbe44e439e511e6389f468e9d679968f9 (diff)
downloadnixlib-3b944f4c0cc6bfe1777909aa692028a9df8311ed.tar
nixlib-3b944f4c0cc6bfe1777909aa692028a9df8311ed.tar.gz
nixlib-3b944f4c0cc6bfe1777909aa692028a9df8311ed.tar.bz2
nixlib-3b944f4c0cc6bfe1777909aa692028a9df8311ed.tar.lz
nixlib-3b944f4c0cc6bfe1777909aa692028a9df8311ed.tar.xz
nixlib-3b944f4c0cc6bfe1777909aa692028a9df8311ed.tar.zst
nixlib-3b944f4c0cc6bfe1777909aa692028a9df8311ed.zip
Jellyfin: Fix NVENC, NVDEC usage by allowing AF_UNIX
Fix NVENC, NVDEC usage when transcoding with hardware capabilities
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/misc/jellyfin.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/jellyfin.nix b/nixos/modules/services/misc/jellyfin.nix
index b9d54f27edc2..cc8d6f027b6c 100644
--- a/nixos/modules/services/misc/jellyfin.nix
+++ b/nixos/modules/services/misc/jellyfin.nix
@@ -84,7 +84,7 @@ in
 
         RestrictNamespaces = true;
         # AF_NETLINK needed because Jellyfin monitors the network connection
-        RestrictAddressFamilies = [ "AF_NETLINK" "AF_INET" "AF_INET6" ];
+        RestrictAddressFamilies = [ "AF_NETLINK" "AF_INET" "AF_INET6" "AF_UNIX" ];
         RestrictRealtime = true;
         RestrictSUIDSGID = true;