[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: guix system: Increase image size for 'guix system vm'.
From: |
Ludovic Courtès |
Subject: |
03/03: guix system: Increase image size for 'guix system vm'. |
Date: |
Sat, 20 May 2017 19:26:51 -0400 (EDT) |
civodul pushed a commit to branch version-0.13.0
in repository guix.
commit 092c58e74513fd4056c064098540421a5e9a5c5f
Author: Ludovic Courtès <address@hidden>
Date: Sun May 21 01:25:16 2017 +0200
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'.
---
guix/scripts/system.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index 9c09767..6977a57 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))))