summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorMichael Peyton Jones <me@michaelpj.com>2019-05-26 23:31:55 +0100
committerMichael Peyton Jones <me@michaelpj.com>2019-06-04 22:30:38 +0100
commitefbd890f991c36f53dfd08f3229952e17fb95d4f (patch)
treef29009d9ec243fbe5763611c4c19a7262b2f5ba0 /nixos/modules/services
parentcf8457d3cc61d2b35a75250e2f76bba0cc9ef960 (diff)
nixos: add throttled service
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/hardware/throttled.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/nixos/modules/services/hardware/throttled.nix b/nixos/modules/services/hardware/throttled.nix
new file mode 100644
index 000000000000..cd5b01450e44
--- /dev/null
+++ b/nixos/modules/services/hardware/throttled.nix
@@ -0,0 +1,21 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.throttled;
+in {
+ options = {
+ services.throttled = {
+ enable = mkEnableOption "fix for Intel CPU throttling";
+ };
+ };
+
+ config = 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."lenovo_fix".wantedBy = [ "multi-user.target" ];
+
+ environment.etc."lenovo_fix.conf".source = "${pkgs.throttled}/etc/lenovo_fix.conf";
+ };
+}