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

@ -55,6 +55,15 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
# NVIDIA Quadro M2000 (Maxwell/GM206) — for Jellyfin NVENC hardware transcoding
hardware.graphics.enable = true;
hardware.nvidia = {
modesetting.enable = true;
open = false; # Maxwell architecture does not support the open kernel module
nvidiaSettings = false; # headless server, no settings GUI needed
};
services.xserver.videoDrivers = [ "nvidia" ];
networking.hostName = "FredOS-Mediaserver";
boot.loader.systemd-boot.enable = true;

View file

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