nixos-config/linux/protostar/syncthing.nix

19 lines
309 B
Nix
Raw Normal View History

2024-03-03 00:11:51 -08:00
{ ... }:
2024-03-02 15:10:23 -08:00
{
2024-03-03 00:11:51 -08:00
services.syncthing = {
2024-03-02 15:10:23 -08:00
enable = true;
2024-03-03 15:04:24 -08:00
settings.folders = {
game-data = {
devices = [ "blitzar" ];
path = "~/Game/data";
type = "receiveonly";
};
game-save = {
devices = [ "blitzar" ];
path = "~/Game/save";
};
};
2024-03-02 15:10:23 -08:00
};
}