2024-11-24 21:35:15 +01:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
options = {
|
|
|
|
polkit.enable = lib.mkEnableOption "";
|
|
|
|
};
|
|
|
|
config = lib.mkIf config.polkit.enable {
|
|
|
|
systemd = {
|
|
|
|
user.services.polkit-gnome-authentication-agent-1 = {
|
|
|
|
description = "polkit-gnome-authentication-agent-1";
|
|
|
|
wantedBy = ["graphical-session.target"];
|
|
|
|
wants = ["graphical-session.target"];
|
|
|
|
after = ["graphical-session.target"];
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "simple";
|
|
|
|
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
|
|
|
Restart = "on-failure";
|
|
|
|
RestartSec = 1;
|
|
|
|
TimeoutStopSec = 10;
|
|
|
|
};
|
2024-08-31 16:04:57 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|