diff --git a/hosts/desktop/default.nix b/hosts/desktop/default.nix index 291181d..5a3033f 100644 --- a/hosts/desktop/default.nix +++ b/hosts/desktop/default.nix @@ -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. }; }; diff --git a/modules/services/nas/syncthing.nix b/modules/services/nas/syncthing.nix index ae738b2..20e4299 100644 --- a/modules/services/nas/syncthing.nix +++ b/modules/services/nas/syncthing.nix @@ -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. }; };