Some checks failed
Run nix flake check / flake-check (push) Failing after 1s
TLP and auto-cpufreq conflict as both manage CPU frequency scaling. Remove TLP and add thermald for Intel thermal management instead. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
361 B
Nix
22 lines
361 B
Nix
{ ... }:
|
|
{
|
|
hardware.brillo.enable = true;
|
|
powerManagement.enable = true;
|
|
|
|
services.thermald.enable = true;
|
|
|
|
services.auto-cpufreq = {
|
|
enable = true;
|
|
settings = {
|
|
battery = {
|
|
governor = "powersave";
|
|
turbo = "never";
|
|
};
|
|
charger = {
|
|
governor = "performance";
|
|
turbo = "auto";
|
|
};
|
|
};
|
|
};
|
|
}
|