summary refs log tree commit diff stats
path: root/modules/syncthing.nix
blob: 4144f7b3de30422408d813446f54102ed06272fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, libs, config, ... }:
{

  services.syncthing = {
    enable = true;
    guiAddress = "krinitsin.com:8384";
    dataDir = "/var/lib/syncthing";
    openDefaultPorts = true;
  };
  
  networking.firewall.allowedTCPPorts = [ 8384 ];
}