From 132823c2acd34f46d6df89ce3635db62643a09c8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Tue, 19 Mar 2019 22:53:48 +0100
Subject: [PATCH] vm: 'virtualized-operating-system' inherits from the user's
 bootloader config.

* gnu/system/vm.scm (virtualized-operating-system): Inherit from the
bootloader of OS.
---
 gnu/system/vm.scm | 1 +
 1 file changed, 1 insertion(+)

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")))