feat: add graphical polkit

This commit is contained in:
Noa Aarts 2024-08-15 10:20:06 +02:00
parent a9d9e013a8
commit 4a9d771f05

View file

@ -325,6 +325,19 @@
restartIfChanged = false; restartIfChanged = false;
}; };
}; };
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.docker = { virtualisation.docker = {