16 lines
300 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|