mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
gnu: Add /etc/shells.
* gnu/system.scm (etc-directory): Add /etc/shells.
This commit is contained in:
parent
0b14d1d7e3
commit
9038298cbf
1 changed files with 6 additions and 0 deletions
|
@ -227,6 +227,11 @@ (define* (etc-directory #:key
|
|||
(group (group-file groups))
|
||||
(pam.d (pam-services->directory pam-services))
|
||||
(login.defs (text-file "login.defs" "# Empty for now.\n"))
|
||||
(shells (text-file "shells" ; used by xterm and others
|
||||
"\
|
||||
/bin/sh
|
||||
/run/current-system/bin/sh
|
||||
/run/current-system/bin/bash\n"))
|
||||
(issue (text-file "issue" "
|
||||
This is an alpha preview of the GNU system. Welcome.
|
||||
|
||||
|
@ -260,6 +265,7 @@ (define* (etc-directory #:key
|
|||
("pam.d" ,(derivation->output-path pam.d))
|
||||
("login.defs" ,login.defs)
|
||||
("issue" ,issue)
|
||||
("shells" ,shells)
|
||||
("profile" ,(derivation->output-path bashrc))
|
||||
("localtime" ,tz-file)
|
||||
("passwd" ,passwd)
|
||||
|
|
Loading…
Reference in a new issue