dotfiles

My PC Dotfiles & Website

syncthing.nix (313B)


## Syncthing Configuration ##
# ? # Configure via Web UI: http://localhost:8384
# ? # Shared directory is at 'files.path.sync'
{
  flake.modules.homeManager.syncthing = {
    services.syncthing.enable = true;
    home.persist.directories = [
      ".config/syncthing"
      ".local/state/syncthing"
    ];
  };
}