mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:59:41 +00:00
15 lines
437 B
Nix
15 lines
437 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);
|
||
|
});
|
||
|
'';
|
||
|
};
|
||
|
}
|