diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-05 17:51:47 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-05 17:51:47 -0700 |
commit | 971ffcae9bff15eb6ac6723b4d0bba7f7c54bf0f (patch) | |
tree | 428d6a111c5128d1595711260f7245b80a1c9c9a /modules/services/tlp | |
parent | carmel: enable the sound (diff) | |
download | world-971ffcae9bff15eb6ac6723b4d0bba7f7c54bf0f.tar.gz |
create a profile for laptop
Diffstat (limited to 'modules/services/tlp')
-rw-r--r-- | modules/services/tlp/default.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/services/tlp/default.nix b/modules/services/tlp/default.nix new file mode 100644 index 0000000..2f818e5 --- /dev/null +++ b/modules/services/tlp/default.nix @@ -0,0 +1,24 @@ +# TLP power management +{ config, lib, ... }: +let cfg = config.my.services.tlp; +in { + options.my.services.tlp = { + enable = lib.mkEnableOption "TLP power management configuration"; + }; + + config = lib.mkIf cfg.enable { + services.tlp = { + enable = true; + + settings = { + # Set CPU scaling aggressively when power is not an issue + CPU_SCALING_GOVERNOR_ON_AC = "performance"; + CPU_SCALING_GOVERNOR_ON_BAT = "powersave"; + + # Keep charge between 60% and 80% to preserve battery life + START_CHARGE_THRESH_BAT0 = 60; + STOP_CHARGE_THRESH_BAT0 = 80; + }; + }; + }; +} |