nixos-config/modules/core/hardware.nix

11 lines
242 B
Nix
Raw Normal View History

2023-11-05 11:40:44 +01:00
{ pkgs, ... }: {
2023-11-05 17:21:54 +01:00
2023-11-05 11:40:44 +01:00
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = true;
hardware.opengl.extraPackages = with pkgs; [
2023-11-05 17:21:54 +01:00
2023-11-05 11:40:44 +01:00
];
powerManagement.cpuFreqGovernor = "performance";
}