mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-18 22:33:00 +00:00
As per systemd.special(7)[0] graphical-session-pre.target is strictly for units that set up things for a graphical session. Most notably, these are usually started *before* the compositor/session is actually ready. While Home Manager's current implementation of graphical-session.target allows these units to work regardless of what systemd.special(7) specifies, other setups like ones with uwsm[1] do not allow these units to start properly. [0]: https://www.freedesktop.org/software/systemd/man/latest/systemd.special.html#graphical-session-pre.target [1]: https://github.com/Vladimir-csp/uwsm
62 lines
1.6 KiB
Nix
62 lines
1.6 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
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;
|
|
in {
|
|
meta.maintainers = [ maintainers.thibautmarty ];
|
|
|
|
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.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "services.poweralertd" pkgs
|
|
lib.platforms.linux)
|
|
];
|
|
|
|
systemd.user.services.poweralertd = {
|
|
Unit = {
|
|
Description = "UPower-powered power alerter";
|
|
Documentation = "man:poweralertd(1)";
|
|
After = [ "graphical-session.target" ];
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
|
|
Service = {
|
|
Type = "simple";
|
|
ExecStart = "${pkgs.poweralertd}/bin/poweralertd ${
|
|
escapeSystemdExecArgs cfg.extraArgs
|
|
}";
|
|
Restart = "always";
|
|
};
|
|
};
|
|
};
|
|
}
|