From 4a9d771f05e2cc1b13e738aa80ca694cec02dbf1 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Thu, 15 Aug 2024 10:20:06 +0200 Subject: [PATCH] feat: add graphical polkit --- hosts/default/configuration.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index f032531..8569db7 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -325,6 +325,19 @@ restartIfChanged = false; }; }; + 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; + }; + }; }; virtualisation.docker = {