nixos-config/linux/blitzar/syncthing.nix

22 lines
411 B
Nix
Raw Normal View History

2024-08-14 11:14:20 -07:00
{...}: {
2024-03-03 00:11:51 -08:00
services.syncthing = {
2023-10-09 10:44:07 -07:00
enable = true;
2024-03-03 15:04:24 -08:00
settings.folders = {
game-data = {
2024-08-14 11:14:20 -07:00
devices = ["protostar"];
2024-03-03 15:04:24 -08:00
path = "~/Game/data";
type = "sendonly";
};
game-save = {
2024-08-14 11:14:20 -07:00
devices = ["protostar"];
2024-03-03 15:04:24 -08:00
path = "~/Game/save";
};
music = {
2024-08-14 11:14:20 -07:00
devices = ["nebula"];
2024-03-03 15:04:24 -08:00
path = "~/Music";
type = "sendonly";
};
2023-10-09 10:44:07 -07:00
};
};
}