infra/nix/home-manager/lib.nix

20 lines
352 B
Nix
Raw Permalink Normal View History

2024-11-15 10:17:56 +01:00
_: {
mkSimpleTrayService =
{ execStart }:
{
Unit = {
Description = "";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
2024-11-15 10:17:56 +01:00
Install = {
WantedBy = [ "graphical-session.target" ];
};
2024-11-15 10:17:56 +01:00
Service = {
ExecStart = execStart;
};
};
}