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

This commit is contained in:
colin 2022-06-30 00:17:05 -07:00
parent 948d169b33
commit 8db30b5de9
1 changed files with 2 additions and 1 deletions

View File

@ -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"
];