21 lines
515 B
Nix
21 lines
515 B
Nix
{ pkgs, ... }: {
|
|
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.kdePackages.polkit-kde-agent-1}/libexec/polkit-kde-authentication-agent-1";
|
|
Restart = "on-failure";
|
|
RestartSec = 1;
|
|
TimeoutStopSec = 10;
|
|
};
|
|
};
|
|
};
|
|
}
|