forked from pub-solar/os
16 lines
434 B
Nix
16 lines
434 B
Nix
pkgs: {
|
|
Unit = {
|
|
Description = "Network Manager applet";
|
|
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" ];
|
|
};
|
|
}
|