forked from pub-solar/os
Benjamin Bädorf
6d1d683b23
The swayidle command in the service was straight up broken, this commit fixes that. Environment Variables set in the `session-variables` file are now correctly imported across the system. This fixes `EDITOR` defaulting to `nano`.
20 lines
504 B
Nix
20 lines
504 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" ];
|
|
};
|
|
}
|