nixos-config/linux/protostar/syncthing.nix

18 lines
309 B
Nix

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