nixos-config/modules/powermanagement.nix

10 lines
149 B
Nix

{ pkgs, config, lib, ... }: {
powerManagement = {
enable = true;
powertop.enable = true;
cpuFreqGovernor = "performance";
};
}