diff options
author | Freya Murphy <freya@freyacat.org> | 2024-10-22 23:08:24 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-10-22 23:08:24 -0400 |
commit | 4e7e7bde5b8293de743dae86c1c6a56a91b054fb (patch) | |
tree | 6ef2c0c9e9217ccf0f4beca71af45d8cdf8168d3 | |
parent | fix curiass again (diff) | |
download | dotfiles-guix-4e7e7bde5b8293de743dae86c1c6a56a91b054fb.tar.gz dotfiles-guix-4e7e7bde5b8293de743dae86c1c6a56a91b054fb.tar.bz2 dotfiles-guix-4e7e7bde5b8293de743dae86c1c6a56a91b054fb.zip |
add bash_profie fallback
-rw-r--r-- | home/base.scm | 3 | ||||
-rwxr-xr-x | home/config/bash/bash_profile | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/home/base.scm b/home/base.scm index 64a03c8..c0edb74 100644 --- a/home/base.scm +++ b/home/base.scm @@ -69,7 +69,8 @@ (service home-files-service-type `((".local/share/nvim/site/autoload/plug.vim" ,(file-append vim-plug "/share/vim/plug.vim")) (".ssh/config" ,(local-file "config/ssh/config")) - (".gitconfig" ,(local-file "config/git/gitconfig")))) + (".gitconfig" ,(local-file "config/git/gitconfig")) + (".bash_profile" ,(local-file "config/bash/bash_profile")))) (service home-dbus-service-type) ))) diff --git a/home/config/bash/bash_profile b/home/config/bash/bash_profile new file mode 100755 index 0000000..85ecd73 --- /dev/null +++ b/home/config/bash/bash_profile @@ -0,0 +1 @@ +/run/current-system/profile/bin/zsh "$HOME/.config/zsh/.zprofile" |