2022-08-14 15:10:30 +00:00
|
|
|
{pkgs, ...}: {
|
2021-05-30 19:10:28 +00:00
|
|
|
Unit = {
|
|
|
|
Description = "Lightweight Wayland notification daemon";
|
|
|
|
Documentation = ["man:mako(1)"];
|
|
|
|
BindsTo = ["sway-session.target"];
|
|
|
|
After = ["sway-session.target"];
|
|
|
|
ConditionEnvironment = ["WAYLAND_DISPLAY"];
|
|
|
|
};
|
|
|
|
Service = {
|
|
|
|
Type = "dbus";
|
|
|
|
BusName = "org.freedesktop.Notifications";
|
|
|
|
ExecStart = "${pkgs.mako}/bin/mako";
|
|
|
|
ExecReload = "${pkgs.mako}/bin/makoctl reload";
|
|
|
|
};
|
|
|
|
Install = {
|
|
|
|
WantedBy = ["sway-session.target"];
|
|
|
|
};
|
|
|
|
}
|