nixos/throttled: disable kernel msr warning

wip/yesman
Tad Fisher 4 years ago
parent 502845c3e3
commit e07f4d6795
No known key found for this signature in database
GPG Key ID: 3A7425F7E7B22251
  1. 6
      nixos/modules/services/hardware/throttled.nix

@ -26,5 +26,11 @@ in {
if cfg.extraConfig != ""
then pkgs.writeText "lenovo_fix.conf" cfg.extraConfig
else "${pkgs.throttled}/etc/lenovo_fix.conf";
# 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";
};
}

Loading…
Cancel
Save