15 lines
237 B
Nix
15 lines
237 B
Nix
|
|
{
|
||
|
|
den.aspects = {
|
||
|
|
base = {
|
||
|
|
nixos =
|
||
|
|
{ lib, ... }:
|
||
|
|
{
|
||
|
|
powerManagement = {
|
||
|
|
enable = false;
|
||
|
|
cpuFreqGovernor = lib.mkDefault "powersave";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|