12 lines
211 B
Nix
12 lines
211 B
Nix
|
{ config, pkgs, ...}:
|
||
|
{
|
||
|
hardware.opengl.extraPackages = with pkgs; [
|
||
|
intel-media-driver
|
||
|
vaapiIntel
|
||
|
intel-compute-runtime
|
||
|
];
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
intel-gpu-tools
|
||
|
];
|
||
|
}
|