summaryrefslogtreecommitdiff
path: root/src/guix-config/.bash_profile
diff options
context:
space:
mode:
authorbd <bdunahu@gmail.com>2023-12-27 17:54:41 -0700
committerbd <bdunahu@gmail.com>2023-12-27 17:54:41 -0700
commitb36934f19c62430195278316b5e7ac7b2e66572a (patch)
tree754bf34d78ba4badd4ae2bd3cd4531f006b51274 /src/guix-config/.bash_profile
parentfdeb36ca3080f5af0c434cb9fc8c8c06442ced1b (diff)
Functional home configuration
Diffstat (limited to 'src/guix-config/.bash_profile')
-rw-r--r--src/guix-config/.bash_profile8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/guix-config/.bash_profile b/src/guix-config/.bash_profile
new file mode 100644
index 0000000..b99d207
--- /dev/null
+++ b/src/guix-config/.bash_profile
@@ -0,0 +1,8 @@
+# Set up the system, user profile, and related variables.
+# /etc/profile will be sourced by bash automatically
+# Set up the home environment profile.
+if [ -f ~/.profile ]; then source ~/.profile; fi
+
+# Honor per-interactive-shell startup file
+if [ -f ~/.bashrc ]; then source ~/.bashrc; fi
+PS1='\u@\h \w${GUIX_ENVIRONMENT:+ [env]}\$ '