19 lines
519 B
Nix
19 lines
519 B
Nix
{pkgs, ...}: {
|
|
systemd.user.services.polkit-gnome-authentication-agent-1 = {
|
|
Unit.Description = "polkit-gnome-authentication-agent-1";
|
|
|
|
Install = {
|
|
WantedBy = ["graphical-session.target"];
|
|
Wants = ["graphical-session.target"];
|
|
After = ["graphical-session.target"];
|
|
};
|
|
|
|
Service = {
|
|
Type = "simple";
|
|
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
|
Restart = "on-failure";
|
|
RestartSec = 1;
|
|
TimeoutStopSec = 10;
|
|
};
|
|
};
|
|
}
|