2019-05-26 22:31:55 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.throttled;
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
services.throttled = {
|
|
|
|
enable = mkEnableOption "fix for Intel CPU throttling";
|
2019-08-03 17:41:52 +00:00
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "";
|
|
|
|
description = "Alternative configuration";
|
|
|
|
};
|
2019-05-26 22:31:55 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.packages = [ pkgs.throttled ];
|
|
|
|
# The upstream package has this in Install, but that's not enough, see the NixOS manual
|
2019-08-13 21:52:01 +00:00
|
|
|
systemd.services.lenovo_fix.wantedBy = [ "multi-user.target" ];
|
2019-05-26 22:31:55 +00:00
|
|
|
|
2019-08-03 17:41:52 +00:00
|
|
|
environment.etc."lenovo_fix.conf".source =
|
|
|
|
if cfg.extraConfig != ""
|
|
|
|
then pkgs.writeText "lenovo_fix.conf" cfg.extraConfig
|
|
|
|
else "${pkgs.throttled}/etc/lenovo_fix.conf";
|
2020-10-29 22:02:33 +00:00
|
|
|
|
|
|
|
# Kernel 5.9 spams warnings whenever userspace writes to CPU MSRs.
|
|
|
|
# See https://github.com/erpalma/throttled/issues/215
|
|
|
|
boot.kernelParams =
|
|
|
|
optional (versionAtLeast config.boot.kernelPackages.kernel.version "5.9")
|
|
|
|
"msr.allow_writes=on";
|
2019-05-26 22:31:55 +00:00
|
|
|
};
|
|
|
|
}
|