diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-12-09 22:29:01 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-12-10 00:24:02 +0100 |
commit | 78ed003811a38a7a3de56316755a2808b7d87e45 (patch) | |
tree | 82be5857976aef71f3a72c345e4768b93b094089 /gnu/system/vm.scm | |
parent | 13ce0e3aa7c4803f35063cd1adcfa1279cc80dd5 (diff) | |
download | patches-78ed003811a38a7a3de56316755a2808b7d87e45.tar patches-78ed003811a38a7a3de56316755a2808b7d87e45.tar.gz |
gnu: Add 'inputs' field to <user-account>; make 'shell' a monadic value.
* gnu/system/shadow.scm (<user-account>)[inputs]: New field.
(passwd-file): Bind the 'shell' field of each account.
* gnu/system/vm.scm (%demo-operating-system): Remove 'shell' field.
* gnu/system/dmd.scm (guix-build-accounts): Store a monadic value in
'shell'. Add 'inputs' field.
* gnu/system.scm (operating-system-derivation): Remove 'shell' field for
'root' account. Add all the 'user-account-inputs' to EXTRAS.
Diffstat (limited to 'gnu/system/vm.scm')
-rw-r--r-- | gnu/system/vm.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 3717e2ac23..8a490fbd6c 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -415,9 +415,7 @@ such as /etc files." (password "") (uid 1000) (gid 100) (comment "Guest of GNU") - (home-directory "/home/guest") - ;; (shell bash-file) - ))) + (home-directory "/home/guest")))) (packages `(("coreutils" ,coreutils) ("bash" ,bash) ("guile" ,guile-2.0) |