diff options
author | Franck Cuny <franck@fcuny.net> | 2023-05-01 19:42:25 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-05-01 19:42:25 -0700 |
commit | f6988202567bc5550d412f5e70125cd5e049a501 (patch) | |
tree | 1bd202120a78c0a9b938d1d7fd657bce1f9766ce /modules/services | |
parent | profiles/workstation: reduce the number of moving parts (diff) | |
download | world-f6988202567bc5550d412f5e70125cd5e049a501.tar.gz |
profiles/laptop: consolidate services related to laptop
Diffstat (limited to 'modules/services')
-rw-r--r-- | modules/services/default.nix | 2 | ||||
-rw-r--r-- | modules/services/thermald/default.nix | 11 | ||||
-rw-r--r-- | modules/services/tlp/default.nix | 25 |
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; - }; - }; - }; -} |