13 lines
173 B
Nix
13 lines
173 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
hardware.opengl.extraPackages = with pkgs; [
|
||
|
intel-compute-runtime
|
||
|
mesa_drivers
|
||
|
vaapiIntel
|
||
|
vaapiVdpau
|
||
|
libvdpau-va-gl
|
||
|
intel-media-driver
|
||
|
];
|
||
|
}
|