mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
10 lines
241 B
Nix
Executable file
10 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";
|
|
}
|