nixos-config/home-manager/profiles/polkit-gnome/default.nix

19 lines
422 B
Nix
Raw Normal View History

2024-12-03 21:26:59 +08:00
{
pkgs,
...
}:
{
systemd.user.services.polkit-gnome-authentication-agent = {
Unit = {
After = [ "graphical-session.target" ];
Requisite = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
RestartSec = 5;
Restart = "on-failure";
};
Install.WantedBy = [ "graphical-session.target" ];
};
}