jellyfin on gpu

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-02-01 18:22:18 +01:00
parent 31031447ce
commit 5736c8ccf2
2 changed files with 13 additions and 0 deletions

11
nixos/amd-graphics.nix Normal file
View File

@@ -0,0 +1,11 @@
{pkgs, ...}: {
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
rocmPackages.clr.icd
# Support VA-API pour AMD
libvdpau-va-gl
libva-vdpau-driver
];
};
}