nixos-config/linux/protostar/syncthing.nix
2025-06-28 17:34:36 -05:00

16 lines
304 B
Nix

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