nixos-config/linux/blitzar/syncthing.nix

25 lines
421 B
Nix
Raw Normal View History

2024-03-03 00:11:51 -08:00
{ ... }:
2023-10-09 10:44:07 -07:00
{
2024-03-03 00:11:51 -08:00
services.syncthing = {
2023-10-09 10:44:07 -07:00
enable = true;
2024-03-03 15:04:24 -08:00
settings.folders = {
game-data = {
devices = [ "protostar" ];
path = "~/Game/data";
type = "sendonly";
};
game-save = {
devices = [ "protostar" ];
path = "~/Game/save";
};
music = {
devices = [ "nebula" ];
path = "~/Music";
type = "sendonly";
};
2023-10-09 10:44:07 -07:00
};
};
}