1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-25 22:18:32 +02:00

common/pc/laptop: drop explicit vm.laptop_mode

This is handled by TLP, so we don't need to set that explicitly.
This commit is contained in:
Yegor Timoshenko 2017-12-27 07:46:06 +00:00
parent b1304963c8
commit 5a00ea423a
No known key found for this signature in database
GPG Key ID: C34BF9DCC9DF8210

View File

@ -1,16 +1,13 @@
{ lib, ... }:
{ config, lib, ... }:
{
imports = [ ../. ];
boot.kernel.sysctl = {
"vm.laptop_mode" = lib.mkDefault 5;
};
# TODO: fix in NixOS/nixpkgs
# Disable governor set in hardware-configuration.nix,
# required when services.tlp.enable is true:
powerManagement.cpuFreqGovernor = lib.mkForce null;
powerManagement.cpuFreqGovernor =
lib.mkIf config.services.tlp.enable (lib.mkForce null);
services.tlp.enable = lib.mkDefault true;
}