disable jet engine
This commit is contained in:
parent
25812d3b8f
commit
21dd10134e
|
@ -38,4 +38,21 @@
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
|
||||||
|
# Disable jet engine
|
||||||
|
services.thinkfan = {
|
||||||
|
enable = true;
|
||||||
|
levels = [
|
||||||
|
[ 0 0 70 ]
|
||||||
|
[ 1 65 75 ]
|
||||||
|
[ 2 70 80 ]
|
||||||
|
[ 3 75 85 ]
|
||||||
|
[ 6 80 90 ]
|
||||||
|
[ 7 90 95 ]
|
||||||
|
[ "level auto" 95 32767 ]
|
||||||
|
];
|
||||||
|
};
|
||||||
|
boot.extraModprobeConfig = ''
|
||||||
|
options thinkpad_acpi fan_control=1 experimental=1
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue