From 90868c67e85fcf2efb3f6075203021f0f9bd97f5 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Wed, 20 May 2020 16:29:50 +0200 Subject: [PATCH] pc/laptop: remove redundant cpuFreqGovernor setting This setting has been part of NixOS since version 16.09 --- common/pc/laptop/default.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/common/pc/laptop/default.nix b/common/pc/laptop/default.nix index ebc4931..946d066 100644 --- a/common/pc/laptop/default.nix +++ b/common/pc/laptop/default.nix @@ -3,11 +3,5 @@ { imports = [ ../. ]; - # TODO: fix in NixOS/nixpkgs - # Disable governor set in hardware-configuration.nix, - # required when services.tlp.enable is true: - powerManagement.cpuFreqGovernor = - lib.mkIf config.services.tlp.enable (lib.mkForce null); - services.tlp.enable = lib.mkDefault true; }