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