nixos-config/home/alex/services/syncthing/default.nix
Alexander Kobjolke 27749dcf2e fix(syncthing): Do not pass -wait option
The option is not supported by syncthing anymore.
2024-05-28 20:35:18 +02:00

11 lines
170 B
Nix

{ config, lib, pkgs, ... }:
{
config.services.syncthing = {
enable = true;
tray = {
enable = true;
command = "syncthingtray --wait";
};
};
}