From 7f1046fe39f922a18bb087a50e762f98a3a569fd Mon Sep 17 00:00:00 2001 From: Luis Guilherme Coelho Date: Thu, 8 Feb 2024 00:31:29 -0300 Subject: [PATCH] home-environments: radio: Add more directories to GUILE_LOAD_PATH --- home-environments/radio.scm | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/home-environments/radio.scm b/home-environments/radio.scm index 4285dab..a8a5997 100644 --- a/home-environments/radio.scm +++ b/home-environments/radio.scm @@ -285,6 +285,7 @@ `(,@fish-abbreviations:user-dirs ,@fish-abbreviations:extensions ,@fish-abbreviations:channels + ,@fish-abbreviations:config ,@fish-abbreviations:quick-edit ,@fish-abbreviations:bookmarks ,@fish-abbreviations:history @@ -304,13 +305,16 @@ ("GUILE_WARN_DEPRECATED" . "detailed") ("GUILE_HISTORY" . "$XDG_CACHE_HOME/guile/history") ("GUILE_LOAD_PATH" - . ,(format #f "~a:~a:~a~@{:~a/share/guile/site/3.0~}" - "$HOME/areas/code/scm" - "$HOME/areas/code/scm/ajatt" - "$HOME/areas/code/scm/radix/modules" - "$HOME/.guix-home/profile" - "$XDG_CONFIG_HOME/guix/current" - "/run/current-system/profile")) + . ,(format #f "$HOME/areas/code/scm~?~?" + "~@{:$HOME/areas/code/scm/~a~}" + '(ajatt + radix/modules + radix/home-environments + radix/operating-systems) + "~@{:~a/share/guile/site/3.0~}" + '($HOME/.guix-home/profile + $XDG_CONFIG_HOME/guix/current + /run/current-system/profile))) #|Language|# ("LANG" . "en_US.UTF-8")