fix(home): Start syncthing tray and wait

The tray might not yet be available, by specifying `--wait`, we can tell
syncthing-tray to wait for the tray to be available.
This commit is contained in:
Alexander Kobjolke 2024-03-17 23:35:10 +01:00
parent 0c6b23849f
commit 9a2c1f1d46

View file

@ -3,6 +3,10 @@
{
config.services.syncthing = {
enable = true;
tray.enable = true;
tray = {
enable = true;
command = "syncthingtray --wait";
};
extraOptions = [ "--wait" ];
};
}