mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-30 10:33:08 +01:00
23 lines
578 B
Nix
23 lines
578 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
security.polkit.enable = true;
|
||
|
|
||
|
}
|