summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2017-05-21 01:25:16 +0200
committerLudovic Courtès <ludo@gnu.org>2017-05-21 01:25:16 +0200
commit092c58e74513fd4056c064098540421a5e9a5c5f (patch)
tree7d9312d7dbb15348660ccdf922a3b985b1521f8e
parent324499184a13e8f27d9805d5db2b133380e69bfe (diff)
downloadguix-092c58e74513fd4056c064098540421a5e9a5c5f.tar.gz
guix system: Increase image size for 'guix system vm'.
This is a followup to 9a1bfe764859365b6726f168da95b88a2d22403b.

* guix/scripts/system.scm (system-derivation-for-action): Add 40MiB to
the default size for 'vm'.
-rw-r--r--guix/scripts/system.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index 9c09767508..6977a57844 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -550,7 +550,7 @@ PATTERN, a string.  When PATTERN is #f, display all the system generations."
                                             #:disk-image-size
                                             (if full-boot?
                                                 image-size
-                                                (* 30 (expt 2 20)))
+                                                (* 70 (expt 2 20)))
                                             #:mappings mappings))
     ((disk-image)
      (system-disk-image os #:disk-image-size image-size))))