aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-03-19 22:53:48 +0100
committerLudovic Courtès <ludo@gnu.org>2019-03-24 23:06:11 +0100
commit132823c2acd34f46d6df89ce3635db62643a09c8 (patch)
tree4b356e8495723524fea63f852d00aa0eacf82276
parent598757e038ab5dea3b59c9c248a2ad860c41fe62 (diff)
downloadguix-132823c2acd34f46d6df89ce3635db62643a09c8.tar
guix-132823c2acd34f46d6df89ce3635db62643a09c8.tar.gz
vm: 'virtualized-operating-system' inherits from the user's bootloader config.
* gnu/system/vm.scm (virtualized-operating-system): Inherit from the bootloader of OS.
-rw-r--r--gnu/system/vm.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index 55cddb1a4b..5068cb3068 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -790,6 +790,7 @@ environment with the store shared with the host. MAPPINGS is a list of
;; force the traditional i386/BIOS method.
;; See <https://bugs.gnu.org/28768>.
(bootloader (bootloader-configuration
+ (inherit (operating-system-bootloader os))
(bootloader grub-bootloader)
(target "/dev/vda")))