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