infra/modules/nixos/builder.nix
2024-07-24 10:27:26 +00:00

15 lines
280 B
Nix

{
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";
}
];
}