diff --git a/system-settings/polkit-rules/70-SL-NM-allow-modify-system.rules b/system-settings/polkit-rules/70-SL-NM-allow-modify-system.rules new file mode 100644 index 0000000..014dea1 --- /dev/null +++ b/system-settings/polkit-rules/70-SL-NM-allow-modify-system.rules @@ -0,0 +1,6 @@ +polkit.addRule(function(action, subject) { + if (action.id == "org.freedesktop.NetworkManager.settings.modify.system" && + subject.isInGroup("wheel")) { + return polkit.Result.YES; + }; +});