nixos-config/linux/protostar/syncthing.nix
2024-12-10 06:37:28 +00:00

16 lines
300 B
Nix

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