summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-09-27 00:45:53 +0200
committerLudovic Courtès <ludo@gnu.org>2013-09-27 00:46:18 +0200
commit5b16ff0985235e4bed589a13aa912470075ef32a (patch)
tree1fa99aced972a3ee8bbc56ab1e1ac6e197131260
parent87eb734d38dff72ccdffd6c5f711d276aa3f9334 (diff)
downloadguix-patches-5b16ff0985235e4bed589a13aa912470075ef32a.tar
guix-patches-5b16ff0985235e4bed589a13aa912470075ef32a.tar.gz
gnu: vm: Add a few packages to the default profile.
* gnu/system/vm.scm (system-qemu-image): Add procps, psmisc, and Zile to the default profile. Increase the image size to 550 MiB.
-rw-r--r--gnu/system/vm.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index c32dde4cf1..917fa3ecb1 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -30,6 +30,7 @@
#:use-module (gnu packages bash)
#:use-module (gnu packages qemu)
#:use-module (gnu packages parted)
+ #:use-module (gnu packages zile)
#:use-module (gnu packages grub)
#:use-module (gnu packages linux)
#:use-module (gnu packages linux-initrd)
@@ -534,6 +535,9 @@ Happy birthday, GNU! http://www.gnu.org/gnu30
("gcc" ,gcc-final)
("libc" ,glibc-final)
("inetutils" ,inetutils)
+ ("procps" ,procps)
+ ("psmisc" ,psmisc)
+ ("zile" ,zile)
("guix" ,guix-0.4)))
;; TODO: Replace with a real profile with a manifest.
@@ -603,7 +607,7 @@ You can log in as 'guest' or 'root' with no password.
(qemu-image store
#:grub-configuration grub.cfg
#:populate populate
- #:disk-image-size (* 500 (expt 2 20))
+ #:disk-image-size (* 550 (expt 2 20))
#:initialize-store? #t
#:inputs-to-copy `(("boot" ,boot)
("linux" ,linux-libre)