From 55958deb64f090b7ab2f9b1142e3da7fe69db423 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 14 Jan 2024 08:22:14 +0000 Subject: [PATCH] Move default Org and References directories into ~/Documents/ --- home/emacs.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home/emacs.nix b/home/emacs.nix index 5515ab5d..57ef507b 100644 --- a/home/emacs.nix +++ b/home/emacs.nix @@ -105,17 +105,17 @@ services = { git-sync = { enable = true; - repositories = with config.home; { + repositories = with config.xdg.userDirs; { org = { - path = "${homeDirectory}/Org"; + path = "${documents}/Org"; uri = "git+https://git.xenia.me.uk/xenia/org.git"; }; references = { - path = "${homeDirectory}/References"; + path = "${documents}/References"; uri = "git+https://git.xenia.me.uk/xenia/references.git"; }; elfeed = { - path = "${homeDirectory}/.elfeed"; + path = "${config.home.homeDirectory}/.elfeed"; uri = "git+https://git.xenia.me.uk/xenia/elfeed.git"; }; };