marleyos/home/syncthing/default.nix

12 lines
185 B
Nix
Raw Normal View History

2024-10-28 03:44:30 +00:00
{pkgs, ...}: {
2024-10-28 02:36:13 +00:00
services.syncthing = {
enable = true;
2024-10-28 03:44:30 +00:00
tray = {
enable = true;
command = "syncthingtray";
package = pkgs.syncthingtray-minimal;
};
2024-10-28 02:36:13 +00:00
};
}