diff options
-rw-r--r-- | gnu/system/image.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/system/image.scm b/gnu/system/image.scm index 36f56e237d..c1a718d607 100644 --- a/gnu/system/image.scm +++ b/gnu/system/image.scm @@ -266,7 +266,8 @@ used in the image." #$output image-root))))) (computed-file "partition.img" image-builder - #:options `(#:references-graphs ,inputs)))) + #:options `(#:local-build? #t ;typically large file + #:references-graphs ,inputs)))) (define (partition->config partition) ;; Return the genimage partition configuration for PARTITION. @@ -324,7 +325,8 @@ image ~a { #~(symlink (string-append #$image-dir "/" #$genimage-name) #$output) - #:options `(#:substitutable? ,substitutable?)))) + #:options `(#:local-build? #t ;typically large file + #:substitutable? ,substitutable?)))) ;; @@ -401,7 +403,8 @@ used in the image. " #:volume-id #$root-label #:volume-uuid #$root-uuid))))) (computed-file name builder - #:options `(#:references-graphs ,inputs + #:options `(#:local-build? #t ;typically large file + #:references-graphs ,inputs #:substitutable? ,substitutable?)))) |