From a0564e4f8ffe92b9ce221062fe0cf471969b938f Mon Sep 17 00:00:00 2001 From: frosty Date: Fri, 9 Jan 2026 11:52:16 -0500 Subject: init --- config.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 config.json (limited to 'config.json') diff --git a/config.json b/config.json new file mode 100644 index 0000000..88604be --- /dev/null +++ b/config.json @@ -0,0 +1,23 @@ +{ + "discord_token": "TOKEN", + "command_channel_id": 1458501093553213450, + "qmp_host": "127.0.0.1", + "qmp_port": 4445, + "qemu_command": [ + "qemu-system-x86_64", + "-m", "6G", + "-smp", "2", + "-drive", "file=disk.qcow2,format=qcow2,if=none,id=drive0", + "-device", "virtio-blk-pci,drive=drive0,bootindex=2", + "-drive", "file=artix.iso,format=raw,if=none,id=cdrom0,media=cdrom", + "-device", "virtio-scsi-pci,id=scsi0", + "-device", "scsi-cd,drive=cdrom0,bootindex=1", + + "-netdev", "user,id=net0,hostfwd=tcp::2953-:22", + "-device", "virtio-net-pci,netdev=net0", + "-qmp", "tcp:127.0.0.1:4445,server,nowait", + "-usb", + "-device", "usb-tablet", + "-display", "none" + ] +} -- cgit v1.2.3