summaryrefslogtreecommitdiffstats
path: root/lenovo/thinkpad/x250/default.nix
blob: 36a1a8e6036c24715a252ca1b0129f08618f9e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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;

  # maintainers: Mic92
}