mirror of
https://github.com/danbulant/dotfiles
synced 2026-06-24 01:01:49 +00:00
aura cfg
This commit is contained in:
parent
e4b31d567c
commit
9407985eb3
1 changed files with 16 additions and 0 deletions
16
servers/aura/configuration.nix
Normal file
16
servers/aura/configuration.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue