From 8f8aaf95a005be3e25f8adee157a058e210964f1 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Sun, 7 Sep 2025 03:30:42 +0200 Subject: [PATCH] Add hs peer to syncthing --- modules/syncthing.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modules/syncthing.nix b/modules/syncthing.nix index 1ed5412..af50a47 100644 --- a/modules/syncthing.nix +++ b/modules/syncthing.nix @@ -29,23 +29,26 @@ "imac" = { id = "5FVPJMW-ZK2NSM7-H747PTY-XWOJPHC-MBJZWJW-WKAB5BE-KSMQAXQ-QQP6JAG"; }; + "hs" = { + id = "GH5D3DJ-PAGKBL6-3VDZJRT-QG4ZMRD-GHCCA3Y-HM2H5CE-NAMJYRR-VHLOOQH"; + }; }; # Define shared folders folders = { "Credentials" = { path = "~/Credentials"; - devices = [ "ipad" "mba" "iphone" "imac" ]; + devices = [ "ipad" "mba" "iphone" "imac" "hs" ]; ignorePerms = true; }; "Documents" = { path = "~/Documents"; - devices = [ "mba" "imac" ]; + devices = [ "mba" "imac" "hs" ]; ignorePerms = true; }; "Obsidian" = { path = "~/Obsidian"; - devices = [ "ipad" "mba" "iphone" "imac" ]; + devices = [ "ipad" "mba" "iphone" "imac" "hs" ]; ignorePerms = true; }; };