system(nix): keep going during builds

Prevents an issue where previously it'd be possible for a nixos-rebuild
to stop during the middle of compilation during a build failure, which
is problematic for longer builds.
This commit is contained in:
Donovan Glover 2024-10-11 11:57:14 -04:00
parent 140e61b54b
commit 1aa3163acb
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -115,6 +115,7 @@ in
auto-optimise-store = true;
warn-dirty = false;
allow-import-from-derivation = false;
keep-going = true;
experimental-features = [
"nix-command"