nixos/modules/misc/polkit.nix

18 lines
531 B
Nix
Raw Permalink Normal View History

2025-06-20 11:59:24 -07:00
{ config, ... }:
{
security.polkit.enable = true;
security.polkit.extraConfig = ''
polkit.addRule(function(action, subject) {
if ((action.id == "org.xfce.thunar" ||
action.id == "org.freedesktop.policykit.exec" ||
action.id == "org.gnome.gparted" ||
2025-08-12 11:58:29 -07:00
action.id == "org.freedesktop.udisks2.encrypted-unlock-system" ||
2025-06-20 11:59:24 -07:00
action.id == "org.freedesktop.udisks2.filesystem-mount-system") &&
subject.isInGroup("wheel"))
{
return polkit.Result.YES;
}
});
'';
}