diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index 6ed183634f66c2bc0264a5b8fa699c3dfc8628b8..ba4c7607c916fe06e3103f73f13d6432d42c884b 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -78,12 +78,14 @@ (define* (expression->derivation-in-linux-vm name exp
 
                                              (make-disk-image? #f)
                                              (references-graphs #f)
+                                             (memory-size 256)
                                              (disk-image-size
                                               (* 100 (expt 2 20))))
   "Evaluate EXP in a QEMU virtual machine running LINUX with INITRD (a
 derivation).  In the virtual machine, EXP has access to all of INPUTS from the
 store; it should put its output files in the `/xchg' directory, which is
-copied to the derivation's output when the VM terminates.
+copied to the derivation's output when the VM terminates.  The virtual machine
+runs with MEMORY-SIZE MiB of memory.
 
 When MAKE-DISK-IMAGE? is true, then create a QEMU disk image of
 DISK-IMAGE-SIZE bytes and return it.
@@ -157,6 +159,7 @@ (define builder
 
          (and (zero?
                (system* qemu "-enable-kvm" "-nographic" "-no-reboot"
+                        "-m" ,(number->string memory-size)
                         "-net" "nic,model=virtio"
                         "-virtfs"
                         ,(string-append "local,id=store_dev,path=" (%store-prefix)