mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-07-04 09:51:47 +02:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0e2a8ed3ed |
@@ -6,9 +6,12 @@ in
|
||||
security.polkit.enable = true;
|
||||
|
||||
environment.etc."polkit-1/rules.d/9-nixos-overrides.rules".text = lib.mkIf cfg.enable ''
|
||||
polkit.addAdminRule(function(action, subject) {
|
||||
if(subject.isInGroup("wheel")) {
|
||||
return ["unix-user:"+subject.user];
|
||||
polkit.addRule(function(action, subject) {
|
||||
if (
|
||||
action.id.startsWith("org.freedesktop.systemd1.") &&
|
||||
subject.isInGroup("wheel")
|
||||
) {
|
||||
return polkit.Result.AUTH_SELF_KEEP;
|
||||
}
|
||||
});
|
||||
'';
|
||||
|
||||
Reference in New Issue
Block a user