This commit is contained in:
2025-11-09 12:07:11 +03:00
parent ac5f58832a
commit 65c2ebc1f2
10 changed files with 34 additions and 54 deletions
+5 -6
View File
@@ -36,12 +36,11 @@
polkit = {
enable = true;
extraConfig = ''
polkit.addRule(function(action, subject) {
if (subject.isInGroup("wheel")){ // for sudo
return polkit.Result.YES;
}
});
polkit.addRule(function(action, subject) {
if (subject.isInGroup("wheel")){ // for sudo
return polkit.Result.YES;
}
});
'';
};
};