2021-01-08 20:57:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.auto-cpufreq;
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
services.auto-cpufreq = {
|
|
|
|
enable = mkEnableOption "auto-cpufreq daemon";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [ pkgs.auto-cpufreq ];
|
|
|
|
|
2021-06-15 00:53:47 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
};
|
2021-01-08 20:57:48 +00:00
|
|
|
};
|
|
|
|
}
|