mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 05:29:42 +00:00
19 lines
443 B
Nix
19 lines
443 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
security.polkit = {
|
|
enable = true;
|
|
debug = lib.mkDefault true;
|
|
|
|
# Have polkit log all actions, if debug is enabled
|
|
extraConfig = lib.mkIf config.security.polkit.debug ''
|
|
/* Log authorization checks. */
|
|
polkit.addRule(function(action, subject) {
|
|
polkit.log("user " + subject.user + " is attempting action " + action.id + " from PID " + subject.pid);
|
|
});
|
|
'';
|
|
};
|
|
}
|