From 56ca74e1ca763f2551e990302dd1073cd101123c Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sat, 23 Nov 2024 05:52:24 +0100 Subject: [PATCH] feat: add polkit --- modules/default.nix | 1 + modules/system/polkit.nix | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 modules/system/polkit.nix diff --git a/modules/default.nix b/modules/default.nix index 16b10b7..54cd6fa 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -10,6 +10,7 @@ ./system/printing.nix ./system/audio.nix ./system/mime.nix + ./system/polkit.nix ./users/ny.nix diff --git a/modules/system/polkit.nix b/modules/system/polkit.nix new file mode 100644 index 0000000..8162e2a --- /dev/null +++ b/modules/system/polkit.nix @@ -0,0 +1,25 @@ +{ + pkgs, + lib, + config, + ... +}: +{ + config = lib.mkIf config.security.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; + }; + }; + }; + }; +}