nixos-config/user/syncthing.nix

11 lines
143 B
Nix
Raw Permalink Normal View History

{ ... }:
{
2022-10-24 20:31:23 -03:00
services.syncthing = {
enable = true;
2024-03-24 12:30:09 -03:00
tray = {
enable = true;
command = "syncthingtray --wait";
};
2022-10-24 20:31:23 -03:00
};
}