nixos-config/modules/core/hardware.nix
2023-11-05 11:40:44 +01:00

11 lines
285 B
Nix
Executable file

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