nixnew/modules/polkit.nix

21 lines
486 B
Nix
Raw Normal View History

2024-01-02 05:15:39 +00:00
{
security.polkit = {
enable = true;
};
systemd = {
user.services.polkit-agent = {
wants = [ "graphical-session.target" ];
wantedBy = [ "graphical-session.target" ];
after = [ "graphical-session.target" ];
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1";
Restart = "on-failure";
RestartSec = 1;
TimeoutStopSec = 10;
};
};
};
}