feat(syncthing): configure devices and folders

Added configuration for Syncthing devices and shared folders, enabling synchronization between specific devices. Adjusted the structure for better clarity and maintainability.
This commit is contained in:
Harald Hoyer 2025-02-25 08:42:02 +01:00
parent 778a450cdd
commit 109c6be0b1

View file

@ -70,14 +70,26 @@
};
};
services = {
syncthing = {
services.syncthing = {
enable = true;
user = "harald";
dataDir = "/mnt/raid/Qmultimedia/syncthing"; # Default folder for new synced folders
configDir = "/mnt/raid/Qmultimedia/syncthing/.config/syncthing"; # Folder for Syncthing's settings and keys
guiAddress = "127.0.0.1:8384";
settings.gui.insecureSkipHostcheck = true;
};
devices = {
"sgx" = { id = "2AAVSVQ-PK66I2B-2B4KWAU-TF674DG-IXNEKLF-CIWK7HG-7MUC7OW-DQQNAQM"; };
"S25" = { id = "7Q7XQXG-VF7QM6Y-HJST4V2-RWOPB3M-GHXQDLL-SRRN3IL-3PHKNOZ-D2IFIQV"; };
};
folders = {
"Documents" = {
path = "~/logseq";
devices = [ "sgx" "S25" ];
};
"Example" = {
path = "/mnt/raid/Qmultimedia/S25-Kamera";
devices = [ "sgx" "S25" ];
};
};
};
}