nixos-config/modules/core/hardware.nix
2023-11-05 17:56:55 +01:00

11 lines
241 B
Nix
Executable file

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