CPU Throttling Fix
This commit is contained in:
27
thinkpad.nix
Normal file
27
thinkpad.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
# https://github.com/NixOS/nixos-hardware/blob/master/common/pc/laptop/cpu-throttling-bug.nix
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
systemd.services.cpu-throttling = {
|
||||
enable = true;
|
||||
description = "CPU Throttling Fix";
|
||||
path = [ pkgs.msr-tools ];
|
||||
script = "wrmsr -a 0x1a2 0x3000000";
|
||||
serviceConfig.Type = "oneshot";
|
||||
wantedBy = [
|
||||
"timers.target"
|
||||
];
|
||||
};
|
||||
|
||||
systemd.timers.cpu-throttling = {
|
||||
enable = true;
|
||||
description = "CPU Throttling Fix";
|
||||
timerConfig = {
|
||||
OnActiveSec = 60;
|
||||
OnUnitActiveSec = 60;
|
||||
Unit = "cpu-throttling.service";
|
||||
};
|
||||
wantedBy = [
|
||||
"timers.target"
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user