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