home/hyprland: fix a few systemd unit targets

This commit is contained in:
Oystein Kristoffer Tveit 2024-12-05 21:14:32 +01:00
parent 130c794082
commit 7293373b25
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146

View File

@ -91,7 +91,9 @@ in
wayland.windowManager.hyprland = {
enable = true;
systemd.enable = false;
systemd.enableXdgAutostart = false;
settings = let
scratchpads = [
@ -321,4 +323,12 @@ in
};
};
};
# UWSM
systemd.user.services = {
hypridle.Unit.After = lib.mkForce "graphical-session.target";
xplugd.Unit.After = lib.mkForce "graphical-session.target";
waybar.Unit.After = lib.mkForce "graphical-session.target";
# hyprpaper.Unit.After = lib.mkForce "graphical-session.target";
};
}