nixos-config/linux/quasar/syncthing.nix

22 lines
411 B
Nix
Raw 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"];
path = "~/Game/data";
type = "sendonly";
};
game-save = {
devices = ["protostar"];
path = "~/Game/save";
};
music = {
devices = ["nebula"];
path = "~/Music";
type = "sendonly";
};
2024-12-09 04:12:16 +00:00
};
};
}