nixos-config/modules/core/hardware.nix
2024-04-13 15:30:32 +02:00

11 lines
239 B
Nix

{ pkgs, ... }:
{
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = true;
hardware.enableRedistributableFirmware = true;
hardware.opengl.extraPackages = with pkgs; [
];
}