infra/modules/nixos/builder.nix

13 lines
258 B
Nix
Raw Normal View History

2023-09-07 12:47:33 +10:00
{
imports = [
../shared/builder.nix
];
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"; }
];
2023-09-07 12:47:33 +10:00
}