From 8db30b5de9acf686d2e44ffc76cd92762d504645 Mon Sep 17 00:00:00 2001 From: colin Date: Thu, 30 Jun 2022 00:17:05 -0700 Subject: [PATCH] servo: enlarge the /tmp tmpfs so we can build large nix packages --- machines/servo/fs.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/machines/servo/fs.nix b/machines/servo/fs.nix index caad2e7ce..9b62e02f3 100644 --- a/machines/servo/fs.nix +++ b/machines/servo/fs.nix @@ -11,11 +11,12 @@ "defaults" ]; }; - # we need a /tmp of default size (half RAM) for building large nix things + # we need a /tmp for building large nix things fileSystems."/tmp" = { device = "none"; fsType = "tmpfs"; options = [ + "size=16G" "mode=777" "defaults" ];