From cc72f59d5a405ee2e812944e5ebab06f0ed18475 Mon Sep 17 00:00:00 2001 From: bahaynes Date: Wed, 29 Jul 2020 20:51:08 -0400 Subject: [PATCH] Removed tlp configuration. Should be set correctly after https://github.com/NixOS/nixpkgs/pull/94064 is merged. --- dell/xps/15-9500/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/dell/xps/15-9500/default.nix b/dell/xps/15-9500/default.nix index 7cec13c..c7beda4 100644 --- a/dell/xps/15-9500/default.nix +++ b/dell/xps/15-9500/default.nix @@ -18,7 +18,4 @@ in # Thermald doesn't have a default config for the 9500 yet, the one in this repo # was generated with dptfxtract-static (https://github.com/intel/dptfxtract) services.thermald.configFile = lib.mkDefault thermald-conf; - - # Set the tlp config to powersave explictly. TLP is enabled in common/pc/laptop. - services.tlp.extraConfig = lib.mkDefault "CPU_SCALING_GOVERNOR_ON_AC=powersave\nCPU_SCALING_GOVERNOR_ON_BAT=powersave"; }