feat: add polkit

This commit is contained in:
Nydragon 2024-11-23 05:52:24 +01:00
parent 2ea9fd28b3
commit 56ca74e1ca
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
2 changed files with 26 additions and 0 deletions

View file

@ -10,6 +10,7 @@
./system/printing.nix ./system/printing.nix
./system/audio.nix ./system/audio.nix
./system/mime.nix ./system/mime.nix
./system/polkit.nix
./users/ny.nix ./users/ny.nix

25
modules/system/polkit.nix Normal file
View file

@ -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;
};
};
};
};
}