nixos-config/linux/quasar/syncthing.nix
2024-12-10 07:09:35 +00:00

21 lines
416 B
Nix

{...}: {
services.syncthing = {
enable = true;
settings.folders = {
game-data = {
devices = ["protostar"];
path = "~//data";
type = "sendonly";
};
game-save = {
devices = ["protostar"];
path = "~//save";
};
music = {
devices = ["nebula"];
path = "~/";
type = "sendonly";
};
};
};
}