New comment by danjenson on void-packages repository https://github.com/void-linux/void-packages/issues/34630#issuecomment-998178636 Comment: So, it turns out that this requires an active `polkitd` session, as well as this rule in `/etc/polkit-1/rules.d/80-clightd.rules`: ``` /* Allow any user to call clightd without authentication */ polkit.addRule(function(action, subject) { if (action.id.indexOf("org.clightd.clightd.") == 0) { return polkit.Result.YES; } }); ``` Not sure if this should be somehow incorporated into the install script. Welcome to add it, would just need some guidance, as I've only been running Void for < 1 week.