nixos-config/user/syncthing.nix

10 lines
143 B
Nix
Raw Normal View History

2024-03-17 00:07:13 -03:00
{ ... }: {
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
};
}