From 0edc9c3317ecff05ae09c25188c7ec2b7fc3cd51 Mon Sep 17 00:00:00 2001 From: Frantisek Bohacek Date: Sun, 24 Sep 2023 09:06:51 +0200 Subject: [PATCH] feat: update syncthing directories to match userDirs --- modules/services/syncthing.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/services/syncthing.nix b/modules/services/syncthing.nix index 2cf5074..d372eb0 100644 --- a/modules/services/syncthing.nix +++ b/modules/services/syncthing.nix @@ -16,20 +16,20 @@ "phone" = { id = inputs.semi-secrets.syncthing.devices.phone; }; }; folders = { - "University" = { - path = "/home/${user}/Documents/uni"; + "uni" = { + path = "/home/${user}/doc/uni"; devices = [ "phone" ]; }; - "Notes" = { - path = "/home/${user}/Documents/notes/obsidian/Notes"; + "notes" = { + path = "/home/${user}/doc/notes/obsidian/Notes"; devices = [ "phone" ]; }; - "Camera" = { - path = "/home/${user}/Documents/camera"; + "camera" = { + path = "/home/${user}/doc/camera"; devices = [ "phone" ]; }; "study" = { - path = "/home/${user}/Documents/study"; + path = "/home/${user}/doc/study"; devices = [ "phone" ]; }; }; -- 2.48.1