mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
add qemu-bios script
This commit is contained in:
parent
8b45caeafc
commit
d5e8da9acc
1 changed files with 15 additions and 1 deletions
16
lib/apps.nix
16
lib/apps.nix
|
@ -1,4 +1,14 @@
|
|||
pkgs:
|
||||
let
|
||||
qemu-opts = builtins.concatStringsSep " " [
|
||||
"${pkgs.qemu_kvm}/bin/qemu-kvm"
|
||||
"-cpu host"
|
||||
"-usbdevice tablet"
|
||||
"-smp $(nproc)"
|
||||
"-m 4096"
|
||||
];
|
||||
|
||||
in
|
||||
builtins.mapAttrs
|
||||
(n: v: {
|
||||
type = "app";
|
||||
|
@ -13,7 +23,11 @@ builtins.mapAttrs
|
|||
exec ${jupy}/bin/python -m jupyterlab "$@"
|
||||
'';
|
||||
|
||||
qemu-bios = ''
|
||||
exec ${qemu-opts} "$@"
|
||||
'';
|
||||
|
||||
qemu-uefi = ''
|
||||
exec ${pkgs.qemu_kvm}/bin/qemu-kvm -bios ${pkgs.OVMF.fd}/FV/OVMF.fd "$@"
|
||||
exec ${qemu-opts} -bios ${pkgs.OVMF.fd}/FV/OVMF.fd "$@"
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue