nixos/qemu: set a reasonable msize by default

This commit is contained in:
rnhmjoj 2021-06-23 16:55:53 +02:00
parent 65e83389ef
commit 2af5413cc6
No known key found for this signature in database
GPG Key ID: BFBAF4C975F76450

View File

@ -280,11 +280,11 @@ in
virtualisation.msize =
mkOption {
default = null;
type = types.nullOr types.ints.unsigned;
type = types.ints.positive;
default = 16384;
description =
''
msize (maximum packet size) option passed to 9p file systems, in
The msize (maximum packet size) option passed to 9p file systems, in
bytes. Increasing this should increase performance significantly,
at the cost of higher RAM usage.
'';