summaryrefslogtreecommitdiff
path: root/home-manager/modules/services/syncthing.nix
blob: f917d861e1df3441c9b0fade04f8a1e6af73307c (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:
{
  services.syncthing = {
    enable = true; 
    tray = {
      enable = true; 
      command = "syncthingtray --wait"; 
    }; 
  };  
}