about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/services/default.nix2
-rw-r--r--modules/services/thermald/default.nix11
-rw-r--r--modules/services/tlp/default.nix25
3 files changed, 0 insertions, 38 deletions
diff --git a/modules/services/default.nix b/modules/services/default.nix
index 4966ed7..9c0fc3c 100644
--- a/modules/services/default.nix
+++ b/modules/services/default.nix
@@ -17,8 +17,6 @@
     ./ssh-server
     ./syncthing
     ./tailscale
-    ./thermald
-    ./tlp
     ./transmission
     ./unifi
   ];
diff --git a/modules/services/thermald/default.nix b/modules/services/thermald/default.nix
deleted file mode 100644
index 78a1ac4..0000000
--- a/modules/services/thermald/default.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-# thermal control management
-{ config, lib, ... }:
-let cfg = config.my.services.thermald;
-in
-{
-  options.my.services.thermald = {
-    enable = lib.mkEnableOption "thermald configuration";
-  };
-
-  config = lib.mkIf cfg.enable { services.thermald = { enable = true; }; };
-}
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;
-      };
-    };
-  };
-}