modules/nixos/builder: increase open file limit

This commit is contained in:
zowoq 2023-09-06 09:24:25 +10:00
parent 820fdb8fd1
commit 357d8bc162

View file

@ -4,4 +4,9 @@
];
nix.gc.dates = "hourly";
# Bump the open files limit so that non-root users can run NixOS VM tests
security.pam.loginLimits = [
{ domain = "*"; item = "nofile"; type = "-"; value = "20480"; }
];
}