11 lines
125 B
Nix
11 lines
125 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
powerManagement = {
|
||
|
cpuFreqGovernor = lib.mkDefault "powersave";
|
||
|
powertop.enable = true;
|
||
|
};
|
||
|
|
||
|
}
|