mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
system: Source .profile in skeleton bash_profile.
Make it consistent with bash_profile generated by Guix Home. * gnu/system/shadow.scm (default-skeletons)[bash_profile]: Source .profile in skeleton bash_profile.
This commit is contained in:
parent
a545d0adbb
commit
a4dfbead19
1 changed files with 3 additions and 0 deletions
|
@ -151,6 +151,9 @@ (define (default-skeletons)
|
|||
'useradd' in the home directory of newly created user accounts."
|
||||
|
||||
(let ((profile (plain-file "bash_profile" "\
|
||||
# Set up Guix Home profile
|
||||
if [ -f ~/.profile ]; then . ~/.profile; fi
|
||||
|
||||
# Honor per-interactive-shell startup file
|
||||
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi\n"))
|
||||
(bashrc %default-bashrc)
|
||||
|
|
Loading…
Reference in a new issue