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:53:58 -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;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
'';
|
|
|
|
}
|