nixos-config/modules/core/hardware.nix

12 lines
218 B
Nix

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