From 4e7e7bde5b8293de743dae86c1c6a56a91b054fb Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 22 Oct 2024 23:08:24 -0400 Subject: [PATCH] add bash_profie fallback --- home/base.scm | 3 ++- home/config/bash/bash_profile | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100755 home/config/bash/bash_profile 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"