19 lines
492 B
Nix
19 lines
492 B
Nix
{pkgs, ...}: {
|
|
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"];
|
|
};
|
|
}
|