mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
11 lines
285 B
Nix
11 lines
285 B
Nix
|
|
{ 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";
|
||
|
|
}
|