flake/nixos/packages/graphical/polkit.nix

22 lines
653 B
Nix
Raw Normal View History

{pkgs, ...}: {
2023-10-15 00:51:56 +00:00
security.polkit.enable = true;
environment.systemPackages = with pkgs; [polkit_gnome];
2023-09-19 00:17:43 +00:00
# polkit_gnome autostart for wms
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"];
2023-09-19 00:17:43 +00:00
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
Restart = "on-failure";
RestartSec = 1;
TimeoutStopSec = 10;
};
};
};
}