19 lines
352 B
Nix
19 lines
352 B
Nix
_: {
|
|
mkSimpleTrayService =
|
|
{ execStart }:
|
|
{
|
|
Unit = {
|
|
Description = "";
|
|
After = [ "graphical-session-pre.target" ];
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Install = {
|
|
WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = execStart;
|
|
};
|
|
};
|
|
}
|