From 593f2c75cbd8429646258587bb9ab8b389b501b4 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Sun, 12 Jan 2025 21:35:12 -0800 Subject: [PATCH] feat: disable tlp for adrastea --- reference/hosts/adrastea/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reference/hosts/adrastea/configuration.nix b/reference/hosts/adrastea/configuration.nix index 4099128..88210d2 100755 --- a/reference/hosts/adrastea/configuration.nix +++ b/reference/hosts/adrastea/configuration.nix @@ -5,6 +5,7 @@ config, pkgs, inputs, + lib, ... }: { @@ -54,7 +55,7 @@ cpuModelId = "00A50F00"; }; - services.tlp.enable = true; + services.tlp.enable = lib.mkForce false; powerManagement.cpuFreqGovernor = "performance";