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,29 @@
{ config, ... }:
{
services.syncthing = {
user = "wo2w";
dataDir = "/home/wo2w";
settings = {
folders = {
minecraft-instances = {
path = "~/.local/share/PrismLauncher/instances";
devices = [
"drone"
"earthmover"
"swordsmachine"
];
};
terraria = {
path = "~/.local/share/Terraria";
devices = [
"drone"
"earthmover"
"swordsmachine"
];
};
};
};
};
}