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:
parent
778a450cdd
commit
109c6be0b1
|
@ -70,14 +70,26 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services.syncthing = {
|
||||||
syncthing = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
user = "harald";
|
user = "harald";
|
||||||
dataDir = "/mnt/raid/Qmultimedia/syncthing"; # Default folder for new synced folders
|
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
|
configDir = "/mnt/raid/Qmultimedia/syncthing/.config/syncthing"; # Folder for Syncthing's settings and keys
|
||||||
guiAddress = "127.0.0.1:8384";
|
guiAddress = "127.0.0.1:8384";
|
||||||
settings.gui.insecureSkipHostcheck = true;
|
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" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue