This commit is contained in:
2026-08-21 04:43:52 +03:30
parent af2189a587
commit 9b6b4958ff
9 changed files with 142 additions and 85 deletions
+21 -1
View File
@@ -95,9 +95,29 @@ in
pkgs.libnotify
pkgs.kdePackages.kdenlive
pkgs.obs-cmd
pkgs.gedit
pkgs.feishin
pkgs.alsa-utils
pkgs.gnome-themes-extra
pkgs.sxhkd
pkgs.hsetroot
];
systemd.user.services.polkit-gnome-authentication-agent-1 = {
Unit = {
Description = "polkit-gnome-authentication-agent-1";
After = [ "graphical-session.target" ];
Wants = [ "graphical-session.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
Type = "simple";
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
Restart = "on-failure";
RestartSec = 1;
TimeoutStopSec = 10;
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
}