nixos-config/sets/gpu/intel.nix

11 lines
197 B
Nix
Raw Normal View History

2020-11-26 04:20:52 +00:00
{ config, pkgs, ... }:
2020-11-16 22:47:50 +00:00
{
hardware.opengl.extraPackages = with pkgs; [
intel-media-driver
intel-compute-runtime
];
environment.systemPackages = with pkgs; [
intel-gpu-tools
];
}