From d99f30137492749eb011f01b5fcd3c29fd411825 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Tue, 8 Mar 2022 09:26:44 -0500 Subject: [PATCH] openstack-config: note the image metadata needed to boot a uefi image --- nixos/modules/virtualisation/openstack-config.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/virtualisation/openstack-config.nix b/nixos/modules/virtualisation/openstack-config.nix index f7806228c653..af4f57466109 100644 --- a/nixos/modules/virtualisation/openstack-config.nix +++ b/nixos/modules/virtualisation/openstack-config.nix @@ -1,5 +1,8 @@ { config, pkgs, lib, ... }: +# image metadata: +# hw_firmware_type=uefi + let inherit (lib) mkIf mkDefault; cfg = config.openstack;