diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2022-01-06 10:43:14 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-01-06 10:43:14 +0100 |
commit | 5d2b8b0ee31d0d9dccb880d393da29a09e1a9352 (patch) | |
tree | 4232bf21dea9924a16b98858ccae64c695378d7a | |
parent | 67429314e43a5ccfb4a93f52991f55e758aeb526 (diff) |
system: vm: Restore default RAM size to 512MB.
* gnu/system/vm.scm (system-qemu-image/shared-store-script): Restore it.
-rw-r--r-- | gnu/system/vm.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 3370df1c81..0fc9fb57f4 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -245,7 +245,7 @@ with '-virtfs' options for the host file systems listed in SHARED-FS." (qemu qemu) (graphic? #t) (volatile? #t) - (memory-size 2048) + (memory-size 512) (mappings '()) full-boot? (disk-image-size |