enable a polkit agent

This commit is contained in:
Ivan Dimitrov 2024-04-12 20:27:40 +03:00
parent f16008fa3e
commit 480704802e

View File

@ -155,6 +155,24 @@
};
};
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;
};
};
};
};
virtualisation = {
waydroid.enable = true;
};