nix-config/hosts/gwiad/syncthing.nix

14 lines
304 B
Nix

{ config, lib, pkgs, ... }:
{
services.syncthing = {
enable = true;
user = "jhemono";
group = "users";
dataDir = "/home/jhemono/Downloads";
configDir = "/home/jhemono/.config/syncthing";
overrideDevices = false;
overrideFolders = false;
openDefaultPorts = true;
};
}