nixos-config/modules/nixos/services/syncthing/main.nix
2025-12-17 11:00:06 -05:00

29 lines
No EOL
544 B
Nix

{ 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"
];
};
};
};
};
}