aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hosts/common/optional/services/tlp.nix22
1 files changed, 9 insertions, 13 deletions
diff --git a/hosts/common/optional/services/tlp.nix b/hosts/common/optional/services/tlp.nix
index 6eb0b82..64f1960 100644
--- a/hosts/common/optional/services/tlp.nix
+++ b/hosts/common/optional/services/tlp.nix
@@ -1,21 +1,17 @@
{config, lib, ...}:
{
- services.tlp.enable = true;
-
- lib.mkIf ((builtins.match "^(jupiter|neptune|saturn|uranus)$" config.networking.hostName) != null) {
- services.tlp = {
- settings = {
- START_CHARGE_THRESH_BAT0 = 40;
- STOP_CHARGE_THRESH_BAT0 = 50;
- };
+ services.tlp = lib.mkIf ((builtins.match "^(jupiter|neptune|saturn|uranus)$" config.networking.hostName) != null) {
+ enable = true;
+ settings = {
+ START_CHARGE_THRESH_BAT0 = 40;
+ STOP_CHARGE_THRESH_BAT0 = 50;
};
};
- lib.mkIf (config.networking.hostName == "ginaz") {
- services.tlp = {
- settings = {
- STOP_CHARGE_THRESH_BAT0 = 1;
- };
+ services.tlp = lib.mkIf (config.networking.hostName == "ginaz") {
+ enable = true;
+ settings = {
+ STOP_CHARGE_THRESH_BAT0 = 1;
};
};
}