mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
system: Add skeleton '.zlogin'.
* gnu/system/shadow.scm (default-skeletons): Add .zlogin.
This commit is contained in:
parent
4e2a21d3d2
commit
02f707c590
1 changed files with 4 additions and 0 deletions
|
@ -122,6 +122,9 @@ (define copy-guile-wm
|
|||
PS1='\\u@\\h \\w\\$ '
|
||||
alias ls='ls -p --color'
|
||||
alias ll='ls -l'\n"))
|
||||
(zlogin (text-file "zlogin" "\
|
||||
# Honor system-wide environment variables
|
||||
source /etc/profile\n"))
|
||||
(guile-wm (gexp->derivation "guile-wm" copy-guile-wm
|
||||
#:modules
|
||||
'((guix build utils))))
|
||||
|
@ -133,6 +136,7 @@ (define copy-guile-wm
|
|||
set debug-file-directory ~/.guix-profile/lib/debug\n")))
|
||||
(return `((".bash_profile" ,profile)
|
||||
(".bashrc" ,bashrc)
|
||||
(".zlogin" ,zlogin)
|
||||
(".Xdefaults" ,xdefaults)
|
||||
(".guile-wm" ,guile-wm)
|
||||
(".gdbinit" ,gdbinit)))))
|
||||
|
|
Loading…
Reference in a new issue