os/modules/graphical/network-manager-applet.service.nix
2022-11-20 23:28:23 +01:00

16 lines
443 B
Nix

pkgs: {
Unit = {
Description = "Lightweight Wayland notification daemon";
BindsTo = ["sway-session.target"];
After = ["sway-session.target"];
# ConditionEnvironment requires systemd v247 to work correctly
ConditionEnvironment = ["WAYLAND_DISPLAY"];
};
Service = {
ExecStart = "${pkgs.networkmanagerapplet}/bin/nm-applet --sm-disable --indicator";
};
Install = {
WantedBy = ["sway-session.target"];
};
}