2020-04-24 23:36:52 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.throttled;
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
services.throttled = {
|
2024-04-21 15:54:59 +00:00
|
|
|
enable = mkEnableOption "fix for Intel CPU throttling";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "";
|
2024-04-21 15:54:59 +00:00
|
|
|
description = "Alternative configuration";
|
2020-04-24 23:36:52 +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
|
2023-02-02 18:25:31 +00:00
|
|
|
systemd.services.throttled.wantedBy = [ "multi-user.target" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
environment.etc."throttled.conf".source =
|
2020-04-24 23:36:52 +00:00
|
|
|
if cfg.extraConfig != ""
|
2023-02-02 18:25:31 +00:00
|
|
|
then pkgs.writeText "throttled.conf" cfg.extraConfig
|
|
|
|
else "${pkgs.throttled}/etc/throttled.conf";
|
2020-12-29 15:07:52 +00:00
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
hardware.cpu.x86.msr.enable = true;
|
2020-12-29 15:07:52 +00:00
|
|
|
# Kernel 5.9 spams warnings whenever userspace writes to CPU MSRs.
|
|
|
|
# See https://github.com/erpalma/throttled/issues/215
|
2023-11-16 04:20:00 +00:00
|
|
|
hardware.cpu.x86.msr.settings.allow-writes =
|
|
|
|
mkIf (versionAtLeast config.boot.kernelPackages.kernel.version "5.9") "on";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|