eudy: Enable memory overcommit

This commit is contained in:
Aleix Roca Nonell 2023-06-30 12:49:44 +02:00
parent 4c309dea2f
commit a0b9d10b14

View File

@ -70,4 +70,8 @@ in {
boot.kernelParams = [ boot.kernelParams = [
"mitigations=off" "mitigations=off"
]; ];
# enable memory overcommit, needed to build a taglibc system using nix after
# increasing the openblas memory footprint
boot.kernel.sysctl."vm.overcommit_memory" = 1;
} }