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

25 lines
No EOL
495 B
Nix

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