From 1c75a4c151dfe417c73ae3f87a6eba0b009c438c Mon Sep 17 00:00:00 2001 From: Jdogzz <2792697+Jdogzz@users.noreply.github.com> Date: Sat, 18 Jan 2025 09:35:27 -0800 Subject: [PATCH] syncthing: have tray wait for bar to load (#6290) Add --wait flag to tray to avoid loading before bar. --- modules/services/syncthing.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/services/syncthing.nix b/modules/services/syncthing.nix index 165ff1455..f609b3b65 100644 --- a/modules/services/syncthing.nix +++ b/modules/services/syncthing.nix @@ -726,7 +726,8 @@ in { }; Service = { - ExecStart = "${pkgs.syncthingtray-minimal}/bin/syncthingtray"; + ExecStart = + "${pkgs.syncthingtray-minimal}/bin/syncthingtray --wait"; }; Install = { WantedBy = [ "graphical-session.target" ]; };