1
0
nixfiles/hosts/storage-2/syncthing.nix

22 lines
354 B
Nix

{ ... }:
{
services.syncthing = {
enable = true;
devices = {
ceasium = {
id = "3JVJ2KS-C44JKLL-LFIMCVJ-VUQK2VB-WKJNOGB-4AIJYJM-MINXEKG-T5FHQQE";
};
};
folders = {
mixcloud = {
path = "/data/mixcloud";
type = "sendonly";
devices = [
"ceasium"
];
};
};
};
}