mirror of
https://github.com/danbulant/dotfiles
synced 2026-06-18 14:11:28 +00:00
16 lines
399 B
Nix
16 lines
399 B
Nix
{ 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";
|
|
};
|
|
}
|