1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-01-11 03:29:50 +01:00

hypridle: use config.wayland.systemd.target

This commit is contained in:
Thiago Kenji Okada 2024-12-31 10:14:30 +00:00 committed by Robert Helgesson
parent da12f0b143
commit a6db8c8f6c
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED

View file

@ -74,13 +74,13 @@ in {
};
systemd.user.services.hypridle = {
Install = { WantedBy = [ "graphical-session.target" ]; };
Install = { WantedBy = [ config.wayland.systemd.target ]; };
Unit = {
ConditionEnvironment = "WAYLAND_DISPLAY";
Description = "hypridle";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
After = [ config.wayland.systemd.target ];
PartOf = [ config.wayland.systemd.target ];
X-Restart-Triggers = mkIf (cfg.settings != { })
[ "${config.xdg.configFile."hypr/hypridle.conf".source}" ];
};