jellyfin: enable NVENC hardware transcoding via Quadro M2000

- Add NVIDIA proprietary driver config to FredOS-Mediaserver hardware
  (Maxwell/GM206, open=false, modesetting enabled, headless)
- Enable hardware.graphics for DRM/KMS infrastructure
- Add jellyfin user to video and render groups for device access

After deploying, enable NVENC in Jellyfin: Dashboard → Playback →
Transcoding → Hardware acceleration: Nvidia NVENC.

https://claude.ai/code/session_016jJU8ZtWLSnJQBdbMr5pxK
This commit is contained in:
Claude 2026-04-15 07:17:09 +00:00
parent b171c0526a
commit 98cc3de7bc
No known key found for this signature in database
2 changed files with 10 additions and 1 deletions

View file

@ -8,6 +8,6 @@
openFirewall = true;
};
users.users.jellyfin.extraGroups = [ "media" ];
users.users.jellyfin.extraGroups = [ "media" "video" "render" ];
};
}