# powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
wermanagement module
This commit is contained in:
parent
0606c9dd37
commit
d7224bb1de
|
@ -13,6 +13,7 @@
|
|||
./network.nix
|
||||
modules/common.nix
|
||||
modules/smtp.nix
|
||||
modules/powermanagement.nix
|
||||
|
||||
];
|
||||
|
||||
|
@ -105,7 +106,7 @@
|
|||
];
|
||||
|
||||
environment.variables.EDITOR = "nvim";
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||
|
||||
location = {
|
||||
provider = "manual";
|
||||
latitude = 47.77;
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
{ pkgs, config, lib, ... }: {
|
||||
|
||||
powerManagement = {
|
||||
enable = true;
|
||||
powertop.enable = true;
|
||||
cpuFreqGovernor = "powersave";
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in New Issue