nix/config/Polkit.nix

30 lines
601 B
Nix

# Polkit agent is used by apps to ask for Root password with a popup.
{
config,
lib,
pkgs,
...
}:
let
cfg = config.module.polkit;
in
{
config = lib.mkIf cfg.enable {
security.polkit.enable = true;
systemd = {
packages = with pkgs; [ polkit-kde-agent ];
user = {
services.plasma-polkit-agent = {
environment.PATH = lib.mkForce null;
wantedBy = [ "gui-session.target" ];
serviceConfig = {
Restart = "always";
RestartSec = 2;
Slice = "session.slice";
};
};
};
};
};
}