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-10 00:19:57 +0000
committerGitHub <noreply@github.com>2022-03-10 00:19:57 +0000
commit81781c338d94c2a50eb279adcc8f5bcaf4f8f34b (patch)
tree4e38a9085f25664871a5175f00b552930aad5ba6 /nixos/modules
parent3b944f4c0cc6bfe1777909aa692028a9df8311ed (diff)
downloadnixpkgs-81781c338d94c2a50eb279adcc8f5bcaf4f8f34b.tar
nixpkgs-81781c338d94c2a50eb279adcc8f5bcaf4f8f34b.tar.gz
nixpkgs-81781c338d94c2a50eb279adcc8f5bcaf4f8f34b.tar.bz2
nixpkgs-81781c338d94c2a50eb279adcc8f5bcaf4f8f34b.tar.lz
nixpkgs-81781c338d94c2a50eb279adcc8f5bcaf4f8f34b.tar.xz
nixpkgs-81781c338d94c2a50eb279adcc8f5bcaf4f8f34b.tar.zst
nixpkgs-81781c338d94c2a50eb279adcc8f5bcaf4f8f34b.zip
Jellyfin: Disable ProtectClock to allow NVENC, NVDEC acceleration
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/misc/jellyfin.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/jellyfin.nix b/nixos/modules/services/misc/jellyfin.nix
index cc8d6f027b6..64b74ddd708 100644
--- a/nixos/modules/services/misc/jellyfin.nix
+++ b/nixos/modules/services/misc/jellyfin.nix
@@ -73,7 +73,8 @@ in
         PrivateDevices = true;
         PrivateUsers = true;
 
-        ProtectClock = true;
+        # Disabled as it does not allow Jellyfin to interface with CUDA devices
+        # ProtectClock = true;
         ProtectControlGroups = true;
         ProtectHostname = true;
         ProtectKernelLogs = true;