auto-cpufreq: actually run as deamon

The upstream service definition uses the (undocumented) --daemon
option, which causes the process to stay running and not exit
immediately.
This commit is contained in:
Michael Livshin 2023-04-28 14:22:39 +03:00
parent 7e3c25bf20
commit ed01157da8

View file

@ -37,7 +37,7 @@ in {
serviceConfig.ExecStart = [
""
"${lib.getExe pkgs.auto-cpufreq} --config ${cfgFile}"
"${lib.getExe pkgs.auto-cpufreq} --daemon --config ${cfgFile}"
];
};
};