servo: enlarge the /tmp tmpfs so we can build large nix packages

This commit is contained in:
2022-06-30 00:17:05 -07:00
parent 948d169b33
commit 8db30b5de9

View File

@@ -11,11 +11,12 @@
"defaults" "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" = { fileSystems."/tmp" = {
device = "none"; device = "none";
fsType = "tmpfs"; fsType = "tmpfs";
options = [ options = [
"size=16G"
"mode=777" "mode=777"
"defaults" "defaults"
]; ];