desko: bump /tmp size to 64G

we need just shy of 30G to build a kernel: better to have too much /tmp
space than not enough
This commit is contained in:
colin 2022-08-09 17:58:35 -07:00
parent fc629082e6
commit eaef2f2325

View File

@ -11,12 +11,14 @@
"defaults"
];
};
# we need a /tmp of default size (half RAM) for building large nix things
# we need a /tmp for building large nix things.
# a cross-compiled kernel, particularly, will easily use 30+GB of tmp
fileSystems."/tmp" = {
device = "none";
fsType = "tmpfs";
options = [
"mode=777"
"size=64G"
"defaults"
];
};