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