nixos-config/modules/core/hardware.nix
2024-01-13 14:35:42 +01:00

12 lines
290 B
Nix

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