summaryrefslogblamecommitdiff
path: root/hermes/home-manager/leo/programs/syncthing.nix
blob: 619a64c168fd7076718efe5faebeef09050d0722 (plain) (tree)
1
2
3
4
5
6
7






                                                                   
{lib, config, ...}: {
  options.syncthing.enable = lib.mkEnableOption "syncthing config";

  config = lib.mkIf config.syncthing.enable {
    services.syncthing.enable = true;
  };
}