nixos-config/linux/protostar/syncthing.nix

17 lines
304 B
Nix
Raw Normal View History

2024-08-14 11:14:20 -07:00
{...}: {
2024-03-03 00:11:51 -08:00
services.syncthing = {
2024-03-02 15:10:23 -08:00
enable = true;
2024-03-03 15:04:24 -08:00
settings.folders = {
game-data = {
2024-12-10 06:37:28 +00:00
devices = ["quasar"];
2025-06-28 17:34:02 -05:00
path = "~//data";
2024-03-03 15:04:24 -08:00
type = "receiveonly";
};
game-save = {
2024-12-10 06:37:28 +00:00
devices = ["quasar"];
2025-06-28 17:34:02 -05:00
path = "~//save";
2024-03-03 15:04:24 -08:00
};
};
2024-03-02 15:10:23 -08:00
};
}