Merge pull request #258074 from RaitoBezarius/ovmf-full-aa64

This commit is contained in:
Ryan Lahfa 2023-10-12 02:27:00 +02:00 committed by GitHub
commit 052489e617
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27043,7 +27043,9 @@ with pkgs;
OVMF = callPackage ../applications/virtualization/OVMF { };
OVMFFull = callPackage ../applications/virtualization/OVMF {
secureBoot = true;
csmSupport = true;
# CSM support is a BIOS emulation mechanism,
# SeaBIOS is only available on x86.
csmSupport = stdenv.hostPlatform.isx86;
httpSupport = true;
tpmSupport = true;
};