dotfiles/servers/aura/configuration.nix
Daniel Bulant 9407985eb3
aura cfg
2026-05-30 11:55:48 +02:00

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";
};
}