Merge pull request #6 from ediblerope/claude/jellyfin-quadro-transcoding-Z4EGb

jellyfin: enable NVENC hardware transcoding via Quadro M2000
This commit is contained in:
ediblerope 2026-04-15 07:21:46 +00:00 committed by GitHub
commit cac4bda2ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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" ];
};
}