diff options
author | bd <bdunahu@operationnull.com> | 2025-03-27 01:33:53 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-27 01:33:53 -0400 |
commit | f812052b598dda8fed3b683333b323ab9f04b60f (patch) | |
tree | e24c296ddd285abb704989ee47111a6a05d543ff /.config/emacs | |
parent | 770539a0c7b2f459dd0019f4b614c56b6e51a70d (diff) |
8GB for QEMU VMs
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/modules/bd--files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/emacs/modules/bd--files.el b/.config/emacs/modules/bd--files.el index a67811d..2ad7fb3 100644 --- a/.config/emacs/modules/bd--files.el +++ b/.config/emacs/modules/bd--files.el @@ -26,7 +26,7 @@ "Open FILE with QEMU." (let ((options `("qemu-system" nil "qemu-system-x86_64" ,(expand-file-name file) "-net" "nic" "-net""user,hostfwd=tcp:127.0.0.1:2222-:22" - "--accel" "kvm" "-m" "4G"))) + "--accel" "kvm" "-m" "8G"))) (unless (string-match-p "graphic" file) (setq options (append options (list "-nographic")))) (apply 'start-process options))) |