nixhome/syncthing.nix

12 lines
187 B
Nix

{ config, pkgs, ...}:
{
services.syncthing = {
enable = true;
tray = {
enable = true;
package = pkgs.qsyncthingtray;
command = "qsyncthingtray";
};
};
}