File 90-wifi-hotspot.rules of Package pinephone-helpers
// Let users in plugdev group enable the hotspot without a password
polkit.addRule(function(action, subject) {
if ((action.id == "org.freedesktop.NetworkManager.settings.modify.system") &&
subject.isInGroup("plugdev") && subject.active) {
return "yes";
}
});