🐛 fix jellyfin hardware acceleration not working

This commit is contained in:
Ingolf Wagner 2025-06-12 23:33:22 +02:00
parent a75761a28e
commit d0a16bc9b9
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
2 changed files with 7 additions and 0 deletions
machines/chungus
hardware-configuration
media-jellyfin.nix

View file

@ -10,7 +10,10 @@
#vaapiIntel # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
#vaapiVdpau
#libvdpau-va-gl
intel-compute-runtime
];
boot.kernelParams = [ "i915.enable_guc=2" ];
hardware.graphics.enable32Bit = true;
hardware.graphics.extraPackages32 = with pkgs.pkgsi686Linux; [ intel-vaapi-driver ];

View file

@ -16,6 +16,10 @@
url = "flix.${config.networking.hostName}.private";
};
environment.systemPackages = [
intel-gpu-tools # for e.g.: intel_gpu_top
];
services.nginx = {
enable = true;
virtualHosts."flix.${config.networking.hostName}.private" = {