hades: start syncthing

This commit is contained in:
Kabbone 2025-10-12 17:58:15 +02:00
parent c2f53e4533
commit a43fdc77f8
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY
2 changed files with 6 additions and 5 deletions

View File

@ -93,7 +93,7 @@
folders = {
"Sync" = { # Name of folder in Syncthing, also the folder ID
path = "/home/${config.services.syncthing.user}/Sync"; # Which folder to add to Syncthing
devices = [ "jupiter" ]; # Which devices to share the folder with
devices = [ "jupiter.home.opel-online.de" ]; # Which devices to share the folder with
ignorePerms = false; # By default, Syncthing doesn't sync file permissions. This line enables it for this folder.
};
};

View File

@ -16,13 +16,14 @@
openDefaultPorts = true;
settings = {
devices = {
"hades" = { id = "DEVICE-ID-GOES-HERE"; };
"lifebook" = { id = "DEVICE-ID-GOES-HERE"; };
"hades.home.opel-online.de" = { id = "3VPCBVW-RH7XKFM-TWJGQHC-ZRAQ575-CQKGGKP-NAB4VXE-KCKJFUT-AMCUQQA"; };
# "lifebook" = { id = "DEVICE-ID-GOES-HERE"; };
};
folders = {
"Sync" = { # Name of folder in Syncthing, also the folder ID
path = "/home/${config.services.syncthing.user}/Sync"; # Which folder to add to Syncthing
devices = [ "hades" "lifebook" ]; # Which devices to share the folder with
path = "/mnt/Mars/${config.services.syncthing.user}/Sync"; # Which folder to add to Syncthing
#devices = [ "hades.home.opel-online.de" "lifebook" ]; # Which devices to share the folder with
devices = [ "hades.home.opel-online.de" ]; # Which devices to share the folder with
ignorePerms = false; # By default, Syncthing doesn't sync file permissions. This line enables it for this folder.
};
};