summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-02-01 01:37:20 +0000
committerGitHub <noreply@github.com>2023-02-01 01:37:20 +0000
commita85007b25303a395d1d92486d163c13b40e7733c (patch)
treeb6a71361e163a3978df6ef0366b6d0d1e6f2b10f /nixos
parent25a9e5aef87ddd493be302d7fafef14a57736eb1 (diff)
parent8542aa185d825b9a567b5f6910d280852a4933eb (diff)
Merge pull request #213317 from kurnevsky/throttled
throttled: fix after recent update
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/hardware/throttled.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/hardware/throttled.nix b/nixos/modules/services/hardware/throttled.nix
index 2d801a7e838f..afca24d976e1 100644
--- a/nixos/modules/services/hardware/throttled.nix
+++ b/nixos/modules/services/hardware/throttled.nix
@@ -20,7 +20,7 @@ in {
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" ];
+ systemd.services.throttled.wantedBy = [ "multi-user.target" ];
environment.etc."throttled.conf".source =
if cfg.extraConfig != ""