1
0
forked from clan/clan-core

Remove error from qemu_command

This commit is contained in:
Luis Hebendanz 2024-01-19 18:54:54 +01:00
parent d956dbeb77
commit 70cf75830d
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ def qemu_command(
kernel_cmdline.append("console=tty0")
# fmt: off
command = [
"qemu-kvms",
"qemu-kvm",
"-name", vm.flake_attr,
"-m", f'{nixos_config["memorySize"]}M',
"-smp", str(nixos_config["cores"]),

View File

@ -98,4 +98,4 @@ class ClanList(Gtk.Box):
vm.start_async()
if not row.get_active():
vm.stop()
vm.stop_async()