diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-02-19 21:30:16 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-02-19 21:30:16 +0100 |
commit | 9038298cbf645cc85ab85e5fe47cab9737a15c50 (patch) | |
tree | 0e53d87fb23fbe6fcfacfe0155490a74d991877d /gnu | |
parent | 0b14d1d7e36eb9b4fa38898d2a1e7e414cbbe735 (diff) | |
download | guix-9038298cbf645cc85ab85e5fe47cab9737a15c50.tar guix-9038298cbf645cc85ab85e5fe47cab9737a15c50.tar.gz |
gnu: Add /etc/shells.
* gnu/system.scm (etc-directory): Add /etc/shells.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index e6346106a2..d28738140f 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -227,6 +227,11 @@ directories or regular files." (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 @@ alias ll='ls -l' ("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) |