From 90502ec7d865cab5e39cd0c7e641947d9206713e Mon Sep 17 00:00:00 2001 From: Madeleine Sydney Date: Tue, 22 Apr 2025 01:22:03 -0600 Subject: [PATCH] refactor(crumb): ~/etc --- modules/home/users/crumb/emacs/modules/syd-org.el | 2 +- users/crumb/files.nix | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/home/users/crumb/emacs/modules/syd-org.el b/modules/home/users/crumb/emacs/modules/syd-org.el index 7285611..a9db1ed 100755 --- a/modules/home/users/crumb/emacs/modules/syd-org.el +++ b/modules/home/users/crumb/emacs/modules/syd-org.el @@ -365,7 +365,7 @@ See https://lists.gnu.org/archive/html/emacs-orgmode/2019-07/msg00081.html." (org-id-locations-file (file-name-concat syd-cache-dir "org-id-locations")) (org-cite-global-bibliography - (list (expand-file-name "~/liography.bib"))) + (list (expand-file-name "~/etc/liography.bib"))) ;; New headings should be inserted /after/ the heading's contents. (org-insert-heading-respect-content t) ;; Hide markup syntax and leave the markup. diff --git a/users/crumb/files.nix b/users/crumb/files.nix index c394872..237aef3 100755 --- a/users/crumb/files.nix +++ b/users/crumb/files.nix @@ -33,6 +33,7 @@ in lib.mkMerge [ "Videos" "src" # My projects. "scratch" # My playgrounds. + "etc" # Miscellaneous belongings. "git" # Other peoples' projects. # Should "org" be declared in emacs.nix? I don't think so. I # conjecture that my org files are extremely valuable with or without @@ -42,9 +43,6 @@ in lib.mkMerge [ # under ~/.ssh, rather than the whole directory. ".ssh" ]; - files = [ - "liography.bib" - ]; }; }