35 lines
727 B
Nix
35 lines
727 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
{
|
|
imports = [ ../traefik/syncthing.nix ];
|
|
services.syncthing = {
|
|
enable = true;
|
|
systemService = true;
|
|
overrideDevices = false;
|
|
overrideFolders = false;
|
|
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;
|
|
};
|
|
};
|
|
};
|
|
}
|