infra/nix/home-manager/lib.nix

15 lines
296 B
Nix
Raw Normal View History

2023-02-07 18:24:28 +01:00
{}: let
in {
2023-02-07 18:24:28 +01:00
mkSimpleTrayService = {execStart}: {
Unit = {
Description = "";
2023-02-07 18:24:28 +01:00
After = ["graphical-session-pre.target"];
PartOf = ["graphical-session.target"];
};
2023-02-07 18:24:28 +01:00
Install = {WantedBy = ["graphical-session.target"];};
2023-02-07 18:24:28 +01:00
Service = {ExecStart = execStart;};
};
}