thinkpad: do not enable thinkfan by default

This commit is contained in:
Yegor Timoshenko 2017-12-25 20:29:10 +00:00
parent 4ac0a93919
commit 554629a957
No known key found for this signature in database
GPG Key ID: C34BF9DCC9DF8210
2 changed files with 0 additions and 8 deletions

View File

@ -4,7 +4,6 @@
imports = [ ../../common/pc/laptop ];
hardware.trackpoint.enable = lib.mkDefault true;
services.thinkfan.enable = lib.mkDefault true;
# Fingerprint reader: login and unlock with fingerprint (if you add one with `fprintd-enroll`)
# services.fprintd.enable = true;

View File

@ -1,13 +1,6 @@
{ config, lib, pkgs, ... }:
{
imports = [
../.
../../../common/cpu/intel
];
# Thinkfan is enabled by thinkpad profile.
# However it requires to set a different `sensor` for this hardware, since there is no /proc/acpi/ibm/thermal
# Regulation also works fine without thinkfan daemon though.
services.thinkfan.enable = lib.mkOverride 900 false;
}