summaryrefslogtreecommitdiff
path: root/gnu/image.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2021-12-16 08:45:01 +0100
committerMathieu Othacehe <othacehe@gnu.org>2021-12-23 10:53:59 +0100
commit594e9428c5ece0ccba1f57810adedefee58ca4cc (patch)
treea684acbfdb635371fbbc93533232353ddbd8a5fb /gnu/image.scm
parentcc4e8a84f4d5d8861c9445ec7e4a75b59d50d3db (diff)
downloadguix-patches-594e9428c5ece0ccba1f57810adedefee58ca4cc.tar
guix-patches-594e9428c5ece0ccba1f57810adedefee58ca4cc.tar.gz
image: Add a shared-store? field.
* gnu/image.scm (<image>)[shared-store?]: New field.
Diffstat (limited to 'gnu/image.scm')
-rw-r--r--gnu/image.scm3
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/image.scm b/gnu/image.scm
index 1c954af8cf..8423cf1d9c 100644
--- a/gnu/image.scm
+++ b/gnu/image.scm
@@ -42,6 +42,7 @@
image-partitions
image-compression?
image-volatile-root?
+ image-shared-store?
image-substitutable?
image-type
@@ -95,6 +96,8 @@
(default #t))
(volatile-root? image-volatile-root? ;boolean
(default #t))
+ (shared-store? image-shared-store? ;boolean
+ (default #f))
(substitutable? image-substitutable? ;boolean
(default #t)))