Move power-profile-daemon to common and remove auto-cpufreq.

This commit is contained in:
jay
2025-08-03 06:50:46 -04:00
parent 41ecfa25f1
commit 9a93522d4b
5 changed files with 5 additions and 23 deletions

View File

@@ -1,18 +0,0 @@
{ pkgs, ... }: {
# List packages installed in system profile. To search, run:
# $ nix search wget
programs.auto-cpufreq = {
enable = false;
settings = {
charger = {
governor = "performance";
turbo = "auto";
};
battery = {
governor = "power-saver";
turbo = "never";
};
};
};
}