srx-platform-nix/modules/hardware/gpu/intel.nix
Sebastian Wendel b910dc465e first commit
2024-07-04 13:47:18 +02:00

12 lines
204 B
Nix

{ lib, pkgs, ... }:
{
hardware = {
opengl = {
enable = lib.mkDefault true;
driSupport = lib.mkDefault true;
};
};
environment.systemPackages = with pkgs; [ intel-gpu-tools ];
}