aboutsummaryrefslogtreecommitdiff
path: root/modules/services/tlp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/services/tlp')
-rw-r--r--modules/services/tlp/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/services/tlp/default.nix b/modules/services/tlp/default.nix
deleted file mode 100644
index ac083d8..0000000
--- a/modules/services/tlp/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-# 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 = "schedutil";
- CPU_SCALING_GOVERNOR_ON_BAT = "schedutil";
-
- # Keep charge between 60% and 80% to preserve battery life
- START_CHARGE_THRESH_BAT0 = 60;
- STOP_CHARGE_THRESH_BAT0 = 80;
- };
- };
- };
-}