summary refs log tree commit diff
path: root/gnu/image.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2021-12-16 09:25:49 +0100
committerMathieu Othacehe <othacehe@gnu.org>2021-12-23 10:53:59 +0100
commitdcc843a716807768c446983ad3406211e28e5f3d (patch)
tree0fe1c54284d11f4393594a01cdecc76fc28b1df6 /gnu/image.scm
parent594e9428c5ece0ccba1f57810adedefee58ca4cc (diff)
downloadguix-dcc843a716807768c446983ad3406211e28e5f3d.tar.gz
image: Add a shared-network? field.
* gnu/image.scm (<image>)[shared-network?]: 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 8423cf1d9c..0b3a5a096b 100644
--- a/gnu/image.scm
+++ b/gnu/image.scm
@@ -43,6 +43,7 @@
             image-compression?
             image-volatile-root?
             image-shared-store?
+            image-shared-network?
             image-substitutable?
 
             image-type
@@ -98,6 +99,8 @@
                       (default #t))
   (shared-store?      image-shared-store? ;boolean
                       (default #f))
+  (shared-network?    image-shared-network? ;boolean
+                      (default #f))
   (substitutable?     image-substitutable? ;boolean
                       (default #t)))