From 194139bec9736ee9873a4fdaa88aaff60f998496 Mon Sep 17 00:00:00 2001 From: EinEtwas Date: Fri, 18 Oct 2024 01:17:57 +0200 Subject: [PATCH] feat: add the autentication agent service --- modules/polkit.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/modules/polkit.nix b/modules/polkit.nix index 7190405..f9cd613 100644 --- a/modules/polkit.nix +++ b/modules/polkit.nix @@ -1,4 +1,19 @@ { pkgs, ... }: { security.polkit.enable = true; + + systemd = { + user.services.polkit-gnome-authentication-agent-1 = { + description = "polkit-gnome-authentication-agent-1"; + wantedBy = [ "graphical-session.target" ]; + wants = [ "graphical-session.target" ]; + serviceConfig = { + Type = "simple"; + ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; + Restart = "on-failure"; + RestartSec = 1; + TimeoutStopSec = 10; + }; + }; +}; } \ No newline at end of file