feat(nixos/services): add qemu-system-x86_64-uefi script
Added a custom shell script for qemu-system-x86_64 enabling UEFI support using OVMF. This ensures that the command uses the specified OVMF firmware for UEFI boot.
This commit is contained in:
parent
85a03f633a
commit
bcf049144c
|
@ -67,6 +67,11 @@ in
|
||||||
vim
|
vim
|
||||||
virt-manager
|
virt-manager
|
||||||
wget
|
wget
|
||||||
|
(pkgs.writeShellScriptBin "qemu-system-x86_64-uefi" ''
|
||||||
|
qemu-system-x86_64 \
|
||||||
|
-bios ${pkgs.OVMF.fd}/FV/OVMF.fd \
|
||||||
|
"$@"
|
||||||
|
'')
|
||||||
];
|
];
|
||||||
shells = [ pkgs.fish pkgs.bash ];
|
shells = [ pkgs.fish pkgs.bash ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue