nixos/auto-cpufreq: fix service wantedBy

launchpad/nixpkgs/master
Aamaruvi Yogamani 3 years ago
parent 961024ddc9
commit 358aa90e30
No known key found for this signature in database
GPG Key ID: F930CFBFF5D7FDC3
  1. 10
      nixos/modules/services/hardware/auto-cpufreq.nix

@ -12,7 +12,13 @@ in {
config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.auto-cpufreq ];
systemd.packages = [ pkgs.auto-cpufreq ];
systemd.services.auto-cpufreq.path = with pkgs; [ bash coreutils ];
systemd = {
packages = [ pkgs.auto-cpufreq ];
services.auto-cpufreq = {
# Workaround for https://github.com/NixOS/nixpkgs/issues/81138
wantedBy = [ "multi-user.target" ];
path = with pkgs; [ bash coreutils ];
};
};
};
}

Loading…
Cancel
Save