_: { security = { sudo.wheelNeedsPassword = false; polkit = { enable = true; extraConfig = '' /* * Allow members of the wheel group to execute any actions * without password authentication, similar to "sudo NOPASSWD:". * * https://wiki.archlinux.org/title/Polkit#Bypass_password_prompt */ polkit.addRule(function(action, subject) { if (subject.isInGroup('wheel')) return polkit.Result.YES; }); ''; }; }; }