From e9e6885d3b7ede0aef94082f7cf9122cab54edf0 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 17 May 2012 19:33:12 +0000 Subject: [PATCH] * Lower the limits on /run and /dev. svn path=/nixos/trunk/; revision=34159 --- modules/system/boot/stage-2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system/boot/stage-2.nix b/modules/system/boot/stage-2.nix index 906f5e691882..c92c29d6aefd 100644 --- a/modules/system/boot/stage-2.nix +++ b/modules/system/boot/stage-2.nix @@ -15,7 +15,7 @@ let }; devSize = pkgs.lib.mkOption { - default = "50%"; + default = "5%"; example = "32m"; description = '' Size limit for the /dev tmpfs. Look at mount(8), tmpfs size option, @@ -33,7 +33,7 @@ let }; runSize = pkgs.lib.mkOption { - default = "50%"; + default = "25%"; example = "256m"; description = '' Size limit for the /run tmpfs. Look at mount(8), tmpfs size option,