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