13 lines
191 B
Nix
13 lines
191 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Enable OpenGL
|
|
hardware.graphics = {
|
|
enable = true;
|
|
extraPackages = with pkgs; [
|
|
intel-media-sdk
|
|
intel-ocl
|
|
intel-compute-runtime
|
|
];
|
|
};
|
|
}
|