1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-12-04 00:39:43 +01:00
nixos-hardware/lenovo/thinkpad/x250/default.nix
2017-12-25 14:39:59 +00:00

13 lines
367 B
Nix

{ 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;
}