nixos-config/linux/quasar/syncthing.nix

22 lines
416 B
Nix
Raw Permalink Normal View History

2024-12-09 04:12:16 +00:00
{...}: {
services.syncthing = {
enable = true;
settings.folders = {
2024-12-10 06:37:28 +00:00
game-data = {
devices = ["protostar"];
2024-12-10 07:09:35 +00:00
path = "~//data";
2024-12-10 06:37:28 +00:00
type = "sendonly";
};
game-save = {
devices = ["protostar"];
2024-12-10 07:09:35 +00:00
path = "~//save";
2024-12-10 06:37:28 +00:00
};
music = {
devices = ["nebula"];
2024-12-10 07:09:35 +00:00
path = "~/";
2024-12-10 06:37:28 +00:00
type = "sendonly";
};
2024-12-09 04:12:16 +00:00
};
};
}