feat: Laptop battery optimisations
This commit is contained in:
parent
1585b3297a
commit
22da52f7a7
@ -5,6 +5,7 @@
|
||||
../../modules/bundle.nix
|
||||
../../modules/gamemode.nix
|
||||
../../modules/users/sweetbread.nix
|
||||
../../modules/laptop.nix
|
||||
];
|
||||
|
||||
networking.hostName = "Senko";
|
||||
|
17
nixos/modules/laptop.nix
Normal file
17
nixos/modules/laptop.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
services.tlp = {
|
||||
enable = true;
|
||||
settings = {
|
||||
CPU_SCALING_GOVERNOR_ON_AC = "performance";
|
||||
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
|
||||
|
||||
CPU_ENERGY_PERF_POLICY_ON_BAT = "power";
|
||||
CPU_ENERGY_PERF_POLICY_ON_AC = "performance";
|
||||
|
||||
CPU_MIN_PERF_ON_AC = 0;
|
||||
CPU_MAX_PERF_ON_AC = 100;
|
||||
CPU_MIN_PERF_ON_BAT = 0;
|
||||
CPU_MAX_PERF_ON_BAT = 25;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user