network-manager-applet: remove --sm-disable
flag
The `--sm-disable` flag is deprecated. It doesn't show in the man pages, any documentation, and others have seemed to notice as well: > The `--sm-disable` flag isn't used anymore due to the applet no longer being session-managed. From: <https://askubuntu.com/a/525273> Which cites: <https://mail.gnome.org/archives/networkmanager-list/2011-May/msg00141.html> PR #4296
This commit is contained in:
parent
a146ab6a61
commit
484a1c9442
|
@ -37,6 +37,12 @@
|
|||
github = "CarlosLoboxyz";
|
||||
githubId = 86011416;
|
||||
};
|
||||
cvoges12 = {
|
||||
name = "Clayton Voges";
|
||||
email = "38054771+cvoges12@users.noreply.github.com";
|
||||
github = "cvoges12";
|
||||
githubId = 38054771;
|
||||
};
|
||||
d-dervishi = {
|
||||
email = "david.dervishi@epfl.ch";
|
||||
github = "d-dervishi";
|
||||
|
|
|
@ -7,7 +7,7 @@ let
|
|||
cfg = config.services.network-manager-applet;
|
||||
|
||||
in {
|
||||
meta.maintainers = [ maintainers.rycee ];
|
||||
meta.maintainers = [ maintainers.rycee hm.maintainers.cvoges12 ];
|
||||
|
||||
options = {
|
||||
services.network-manager-applet = {
|
||||
|
@ -32,10 +32,8 @@ in {
|
|||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||
|
||||
Service = {
|
||||
ExecStart = toString
|
||||
([ "${pkgs.networkmanagerapplet}/bin/nm-applet" "--sm-disable" ]
|
||||
++ optional config.xsession.preferStatusNotifierItems
|
||||
"--indicator");
|
||||
ExecStart = toString ([ "${pkgs.networkmanagerapplet}/bin/nm-applet" ]
|
||||
++ optional config.xsession.preferStatusNotifierItems "--indicator");
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue