me
/
guix
Archived
1
0
Fork 0

images: hurd: Add hurd-barebones-qcow2-image.

* gnu/system/images/hurd.scm (hurd-barebones-qcow2-image): New variable.
master
Mathieu Othacehe 2020-09-29 11:40:58 +02:00
parent f441e3e8b5
commit 644cdc819f
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 8 additions and 1 deletions

View File

@ -31,7 +31,8 @@
#:use-module (gnu system image)
#:export (hurd-barebones-os
hurd-disk-image
hurd-barebones-disk-image))
hurd-barebones-disk-image
hurd-barebones-qcow2-image))
(define hurd-barebones-os
(operating-system
@ -87,3 +88,9 @@
(inherit hurd-disk-image)
(name 'hurd-barebones-disk-image)
(operating-system hurd-barebones-os)))
(define hurd-barebones-qcow2-image
(image
(inherit hurd-barebones-disk-image)
(name 'hurd-barebones.qcow2)
(format 'compressed-qcow2)))