summaryrefslogtreecommitdiff
path: root/home-modules/services/syncthing.nix
blob: b518dd66af02d02ba4ab31f85ab4724b505fcf40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  config,
  pkgs,
  lib,
  ...
}:
{
  config = lib.mkIf config.homeapps.presets.connectivity.enable {
    services.syncthing = {
      enable = true;
    };
  };
}