nixos/hosts/mu/fan.nix

19 lines
322 B
Nix
Raw Normal View History

2024-03-05 22:57:41 +01:00
{...}: {
2023-10-22 16:02:37 +02:00
# Disable jet engine
services.thinkfan = {
enable = true;
levels = [
2024-03-05 22:57:41 +01:00
[0 0 70]
[1 65 75]
[2 70 80]
[3 75 85]
[6 80 90]
[7 90 95]
["level auto" 95 32767]
2023-10-22 16:02:37 +02:00
];
};
boot.extraModprobeConfig = ''
options thinkpad_acpi fan_control=1 experimental=1
'';
}