Ahwxorg/modules/core/hardware.nix
2024-06-21 09:35:48 +02:00

12 lines
218 B
Nix

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