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