python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / hardware / throttled.nix
blob99735ff6519d566de580fe92a4e486e78486d142
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
6   cfg = config.services.throttled;
7 in {
8   options = {
9     services.throttled = {
10       enable = mkEnableOption (lib.mdDoc "fix for Intel CPU throttling");
12       extraConfig = mkOption {
13         type = types.str;
14         default = "";
15         description = lib.mdDoc "Alternative configuration";
16       };
17     };
18   };
20   config = mkIf cfg.enable {
21     systemd.packages = [ pkgs.throttled ];
22     # The upstream package has this in Install, but that's not enough, see the NixOS manual
23     systemd.services.lenovo_fix.wantedBy = [ "multi-user.target" ];
25     environment.etc."lenovo_fix.conf".source =
26       if cfg.extraConfig != ""
27       then pkgs.writeText "lenovo_fix.conf" cfg.extraConfig
28       else "${pkgs.throttled}/etc/lenovo_fix.conf";
30     # Kernel 5.9 spams warnings whenever userspace writes to CPU MSRs.
31     # See https://github.com/erpalma/throttled/issues/215
32     boot.kernelParams =
33       optional (versionAtLeast config.boot.kernelPackages.kernel.version "5.9")
34       "msr.allow_writes=on";
35   };