Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.throttled;
|
|
in
|
|
{
|
|
options = {
|
|
services.throttled = {
|
|
enable = lib.mkEnableOption "fix for Intel CPU throttling";
|
|
|
|
extraConfig = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "";
|
|
description = "Alternative configuration";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
systemd.packages = [ pkgs.throttled ];
|
|
# The upstream package has this in Install, but that's not enough, see the NixOS manual
|
|
systemd.services.throttled.wantedBy = [ "multi-user.target" ];
|
|
|
|
environment.etc."throttled.conf".source =
|
|
if cfg.extraConfig != "" then
|
|
pkgs.writeText "throttled.conf" cfg.extraConfig
|
|
else
|
|
"${pkgs.throttled}/etc/throttled.conf";
|
|
|
|
hardware.cpu.x86.msr.enable = true;
|
|
# Kernel 5.9 spams warnings whenever userspace writes to CPU MSRs.
|
|
# See https://github.com/erpalma/throttled/issues/215
|
|
hardware.cpu.x86.msr.settings.allow-writes =
|
|
lib.mkIf (lib.versionAtLeast config.boot.kernelPackages.kernel.version "5.9") "on";
|
|
};
|
|
}
|