feat: Laptop battery optimisations

This commit is contained in:
Sweetbread 2024-09-29 00:45:48 +03:00
parent 1585b3297a
commit 22da52f7a7
2 changed files with 18 additions and 0 deletions

View File

@ -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
View 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;
};
};
}