2023-01-28 20:49:10 +00:00
|
|
|
pkgs: {
|
2021-05-30 19:10:28 +00:00
|
|
|
Unit = {
|
2023-07-21 09:55:23 +00:00
|
|
|
Description = "Network Manager applet";
|
2023-01-28 20:49:10 +00:00
|
|
|
BindsTo = ["sway-session.target"];
|
|
|
|
After = ["sway-session.target"];
|
2021-05-30 19:10:28 +00:00
|
|
|
# ConditionEnvironment requires systemd v247 to work correctly
|
2023-01-28 20:49:10 +00:00
|
|
|
ConditionEnvironment = ["WAYLAND_DISPLAY"];
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
Service = {
|
|
|
|
ExecStart = "${pkgs.networkmanagerapplet}/bin/nm-applet --sm-disable --indicator";
|
|
|
|
};
|
|
|
|
Install = {
|
2023-01-28 20:49:10 +00:00
|
|
|
WantedBy = ["sway-session.target"];
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
}
|