2021-04-27 22:38:41 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
2024-09-21 00:29:26 +02:00
|
|
|
let
|
|
|
|
inherit (lib.strings) toJSON;
|
|
|
|
cfg = config.services.poweralertd;
|
|
|
|
escapeSystemdExecArg = arg:
|
|
|
|
let
|
|
|
|
s = if isPath arg then
|
|
|
|
"${arg}"
|
|
|
|
else if isString arg then
|
|
|
|
arg
|
|
|
|
else if isInt arg || isFloat arg || isDerivation arg then
|
|
|
|
toString arg
|
|
|
|
else
|
|
|
|
throw
|
|
|
|
"escapeSystemdExecArg only allows strings, paths, numbers and derivations";
|
|
|
|
in replaceStrings [ "%" "$" ] [ "%%" "$$" ] (toJSON s);
|
|
|
|
escapeSystemdExecArgs = concatMapStringsSep " " escapeSystemdExecArg;
|
2021-04-27 22:38:41 +02:00
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.thibautmarty ];
|
|
|
|
|
2024-09-20 09:44:52 +02:00
|
|
|
options.services.poweralertd = {
|
|
|
|
enable = mkEnableOption "the Upower-powered power alertd";
|
|
|
|
|
|
|
|
extraArgs = mkOption {
|
|
|
|
type = with types; listOf str;
|
|
|
|
default = [ ];
|
|
|
|
example = [ "-s" "-S" ];
|
|
|
|
description = ''
|
|
|
|
Extra command line arguments to pass to poweralertd.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2021-04-27 22:38:41 +02:00
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.poweralertd" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2021-04-27 22:38:41 +02:00
|
|
|
systemd.user.services.poweralertd = {
|
|
|
|
Unit = {
|
|
|
|
Description = "UPower-powered power alerter";
|
|
|
|
Documentation = "man:poweralertd(1)";
|
|
|
|
After = [ "graphical-session-pre.target" ];
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
Type = "simple";
|
2024-09-20 09:44:52 +02:00
|
|
|
ExecStart = "${pkgs.poweralertd}/bin/poweralertd ${
|
2024-09-21 00:29:26 +02:00
|
|
|
escapeSystemdExecArgs cfg.extraArgs
|
2024-09-20 09:44:52 +02:00
|
|
|
}";
|
2021-04-27 22:38:41 +02:00
|
|
|
Restart = "always";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|