infra/nix/home-manager/lib.nix

18 lines
327 B
Nix
Raw Normal View History

2022-10-31 11:04:38 +01:00
{ }:
2022-10-31 11:04:38 +01:00
let
in {
mkSimpleTrayService = { execStart }: {
Unit = {
Description = "pasystray applet";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
2022-10-31 11:04:38 +01:00
Install = { WantedBy = [ "graphical-session.target" ]; };
2022-10-31 11:04:38 +01:00
Service = { ExecStart = execStart; };
};
}