diff options
author | Florian Pelz <pelzflorian@pelzflorian.de> | 2024-02-14 12:03:01 +0100 |
---|---|---|
committer | Florian Pelz <pelzflorian@pelzflorian.de> | 2024-02-28 16:55:20 +0100 |
commit | bc6840316c665e5959469e5c857819142cc4a47b (patch) | |
tree | 35b871b2fe0d605d24f918b363e63ffd4e64d46c | |
parent | 85aa30c53d79cb691c9153f6fb92a3715e2436f6 (diff) |
system: default-bash-profile: Add Guix Home search paths as well.
Ordinary .guix-profile is searched already. Also this makes desktop
environments find packages installed in Guix Home.
* gnu/system/shadow.scm (%default-bash-profile): Add Home search paths.
-rw-r--r-- | gnu/system/shadow.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm index 8b3958ba5c..d9f13271d8 100644 --- a/gnu/system/shadow.scm +++ b/gnu/system/shadow.scm @@ -165,6 +165,7 @@ if [ -f ~/.bashrc ]; then . ~/.bashrc; fi # Merge search-paths from multiple profiles, the order matters. eval \"$(guix package --search-paths \\ -p $HOME/.config/guix/current \\ +-p $HOME/.guix-home/profile \\ -p $HOME/.guix-profile \\ -p /run/current-system/profile)\" |