builders: increase tmpfs size on standard builders to 128G
Another try to strike a balance between storage and memory requirements.
Martin Weinelt committed
Feb 21, 2025 at 16:08 UTC
c98dab99cd3de16e1f7a8ac4774307926f10e64c
2 files changed
+4
-4
builders/profiles/hetzner-ax101r.nix
+2
-2
@@ -15,9 +15,9 @@
15
16
boot.tmp = {
17
useTmpfs = true;
18
- # 96G tmpfs, 160G RAM for standard builders
18
+ # 128G tmpfs, 128G RAM for standard builders
19
# 160G tmpfs, 96G RAM for big parallel builders
20
- tmpfsSize = if lib.elem "big-parallel" config.nix.settings.system-features then "160G" else "96G";
20
+ tmpfsSize = if lib.elem "big-parallel" config.nix.settings.system-features then "160G" else "128G";
21
};
22
23
boot.initrd.availableKernelModules = [
builders/profiles/hetzner-rx220.nix
+2
-2
@@ -16,9 +16,9 @@
16
# 96G for build roots, 160G for working memory
17
boot.tmp = {
18
useTmpfs = true;
19
- # 96G tmpfs, 160G RAM for standard builders
19
+ # 128G tmpfs, 128G RAM for standard builders
20
# 128G tmpfs, 128G RAM for big parallel builders
21
- tmpfsSize = if lib.elem "big-parallel" config.nix.settings.system-features then "128G" else "96G";
21
+ tmpfsSize = if lib.elem "big-parallel" config.nix.settings.system-features then "128G" else "128G";
22
};
23
24
boot.initrd.availableKernelModules = [