Merge pull request #6 from ediblerope/claude/jellyfin-quadro-transcoding-Z4EGb
jellyfin: enable NVENC hardware transcoding via Quadro M2000
This commit is contained in:
commit
cac4bda2ab
2 changed files with 10 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -8,6 +8,6 @@
|
|||
openFirewall = true;
|
||||
};
|
||||
|
||||
users.users.jellyfin.extraGroups = [ "media" ];
|
||||
users.users.jellyfin.extraGroups = [ "media" "video" "render" ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue