From e7b2ce0d3920efb1d28805973ab96953f8c0db5d Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Sun, 7 Jul 2024 13:36:18 +0200 Subject: [PATCH] add syncthing device and folder --- hosts/yodaNas/syncthing.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/yodaNas/syncthing.nix b/hosts/yodaNas/syncthing.nix index 77eb59e..1e421b1 100644 --- a/hosts/yodaNas/syncthing.nix +++ b/hosts/yodaNas/syncthing.nix @@ -35,16 +35,23 @@ "yodaEnchilada" = { id = "6PZPIIO-VNABMOI-F2TQUHK-N72MK53-KYZ6X2E-AYBI7XH-OJ5BDQL-GEP5SAC"; }; "susanLaptop" = { id = "5VT2TZP-FCSREZY-BQTLWHP-VGYAQE3-A3HXOC2-N3S75Z2-TUFJWRZ-HHPQJQW"; }; "susanHandy" = { id = "VEIKGQM-WVEQ2L2-RZQ5PHD-QII5N6D-42COGCA-NHICJKY-OX4LRRI-O3A7MAH"; }; + "sarahHandy" = { id = "VBRXT7I-7TR7KOZ-YEZFSZY-D7IEBDC-5V6TFUU-7HD2MOF-T6DYWDZ-LDHH7QK"; }; }; settings.folders = { # Name of folder in Syncthing, also the folder ID. + # My personal Obsidian vault. "Notes" = { # Path to shared folder. path = "/mnt/data/jc-data/cloud.privacy1st.de/files_ncp/Notes"; # Which devices to share the folder with. devices = [ "yodaTux" "yodaTab" "yodaEnchilada" ]; }; - # Obsidian folder of Susan. + # Obsidian vault of travel blog. + "TravelDiary" = { + path = "/mnt/data/jc-data/cloud.privacy1st.de/files_ncp/TravelDiary"; + devices = [ "sarahHandy" ]; + }; + # Obsidian vault of Susan. "Obsidian" = { path = "/mnt/data/jc-data/cloud.privacy1st.de/files_susan/Obsidian"; devices = [ "susanLaptop" "susanHandy" ];