feat: add polkit
This commit is contained in:
parent
2ea9fd28b3
commit
56ca74e1ca
2 changed files with 26 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
|||
./system/printing.nix
|
||||
./system/audio.nix
|
||||
./system/mime.nix
|
||||
./system/polkit.nix
|
||||
|
||||
./users/ny.nix
|
||||
|
||||
|
|
25
modules/system/polkit.nix
Normal file
25
modules/system/polkit.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue