24 lines
420 B
Nix
24 lines
420 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.syncthing = {
|
|
enable = true;
|
|
settings.folders = {
|
|
game-data = {
|
|
devices = [ "protostar" ];
|
|
path = "~/Game/data";
|
|
type = "sendonly";
|
|
};
|
|
game-save = {
|
|
device = [ "protostar" ];
|
|
path = "~/Game/save";
|
|
};
|
|
music = {
|
|
devices = [ "nebula" ];
|
|
path = "~/Music";
|
|
type = "sendonly";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|