nixos-config/linux/quasar/syncthing.nix
2024-12-09 04:12:16 +00:00

21 lines
467 B
Nix

{...}: {
services.syncthing = {
enable = true;
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";
# };
};
};
}