mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2026-02-05 13:51:57 -05:00
style:hy_animations_config remove:scx&&swayosd&&tsukimi feat:use_polkit_gnome add:embedded
22 lines
547 B
Nix
22 lines
547 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
polkit_gnome
|
|
];
|
|
|
|
systemd.user.services.polkit-gnome-authentication-agent = {
|
|
Unit = {
|
|
Description = "PolicyKit GNOME Authentication Agent";
|
|
PartOf = ["graphical-session.target"];
|
|
After = ["graphical-session.target"];
|
|
};
|
|
Service = {
|
|
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
|
Restart = "on-failure";
|
|
Slice = "session.slice";
|
|
};
|
|
Install = {
|
|
WantedBy = ["graphical-session.target"];
|
|
};
|
|
};
|
|
}
|