infra/nix/home-manager/lib.nix
2022-11-03 20:46:14 +01:00

17 lines
327 B
Nix

{ }:
let
in {
mkSimpleTrayService = { execStart }: {
Unit = {
Description = "pasystray applet";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Install = { WantedBy = [ "graphical-session.target" ]; };
Service = { ExecStart = execStart; };
};
}