10 lines
147 B
Nix
10 lines
147 B
Nix
|
{ pkgs, config, lib, ... }: {
|
||
|
|
||
|
powerManagement = {
|
||
|
enable = true;
|
||
|
powertop.enable = true;
|
||
|
cpuFreqGovernor = "powersave";
|
||
|
};
|
||
|
|
||
|
}
|