nixos/services/syncthing/default.nix

35 lines
726 B
Nix

{ config, lib, pkgs, user, ... }:
{
imports = [ ../traefik/syncthing.nix ];
services.syncthing = {
enable = true;
systemService = true;
overrideDevices = false;
overrideFolders = true;
openDefaultPorts = true;
settings.folders = {
"Documents" = {
id = "gvggx-6telk";
path = "~/Documents";
ignorePerms = true;
};
"Music" = {
id = "munzw-vnxhl";
path = "~/Music";
ignorePerms = true;
};
"Pictures" = {
id = "ziuj8-rm6dn";
path = "~/Pictures";
ignorePerms = true;
};
"Videos" = {
id = "mbsop-qteua";
path = "~/Videos";
ignorePerms = true;
};
};
};
}