diff options
Diffstat (limited to 'modules/services/syncthing')
-rw-r--r-- | modules/services/syncthing/default.nix | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/modules/services/syncthing/default.nix b/modules/services/syncthing/default.nix index 19f0c62..c4739d6 100644 --- a/modules/services/syncthing/default.nix +++ b/modules/services/syncthing/default.nix @@ -19,7 +19,13 @@ in { folders.Sync = { path = "/home/fcuny/documents"; - devices = attrNames config.services.syncthing.devices; + devices = [ "tahoe" ]; + }; + + folders.PixelCamera = { + path = "/home/fcuny/media/pixel/camera"; + id = "pixel_5_vwsr-photos"; + devices = lib.attrNames config.services.syncthing.devices; }; devices = { @@ -33,6 +39,11 @@ in { "4Y36C3Y-LUTO6LD-JXNV73B-FLXSTNP-5Q3CSPY-HESHTPH-EDYA54K-WEICJAJ"; introducer = true; }; + pixel = { + id = + "J3JQFCJ-MY5RCF7-4NXMVU5-2JECKWO-UHFUS5T-KO64EMB-RNUV4F2-ZQ7Z6A6"; + introducer = false; + }; }; }; }; |