This commit is contained in:
Daniel Bulant 2026-05-30 11:55:48 +02:00
parent e4b31d567c
commit 9407985eb3
No known key found for this signature in database

View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
hardware.graphics.extraPackages = with pkgs; [
# Required for modern Intel GPUs (Xe iGPU and ARC)
intel-media-driver # VA-API (iHD) userspace
vpl-gpu-rt # oneVPL (QSV) runtime
# Optional compute/tooling for Intel GPUs
intel-compute-runtime # OpenCL (NEO) + Level Zero for Arc/Xe
];
environment.sessionVariables = {
LIBVA_DRIVER_NAME = "iHD";
};
}