nixos-config/linux/protostar/syncthing.nix

16 lines
302 B
Nix

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