nixos-config/modules/core/hardware.nix
2023-11-16 14:33:58 +01:00

12 lines
290 B
Nix
Executable file

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