marleyos/home/syncthing/default.nix

12 lines
185 B
Nix
Raw Normal View History

2024-10-27 20:44:30 -07:00
{pkgs, ...}: {
2024-10-27 19:36:13 -07:00
services.syncthing = {
enable = true;
2024-10-27 20:44:30 -07:00
tray = {
enable = true;
command = "syncthingtray";
package = pkgs.syncthingtray-minimal;
};
2024-10-27 19:36:13 -07:00
};
}