syncthing: init

This commit is contained in:
wo2wz 2025-12-17 11:00:06 -05:00
parent d90c248dc2
commit 5930433925
6 changed files with 93 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ config, ... }:
{
services.syncthing.settings.folders = {
minecraft-instances = {
path = "${config.services.syncthing.dataDir}/minecraft-instances";
type = "receiveonly";
devices = [
"drone"
"earthmover"
"swordsmachine"
];
};
terraria = {
path = "${config.services.syncthing.dataDir}/terraria";
type = "receiveonly";
devices = [
"drone"
"earthmover"
"swordsmachine"
];
};
};
}