diff options
Diffstat (limited to 'config.json')
| -rw-r--r-- | config.json | 23 |
1 files changed, 23 insertions, 0 deletions
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" + ] +} |
