os/modules/sway/mako.service.nix

19 lines
492 B
Nix
Raw Normal View History

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