From f2656abb5291c8bd668c266bd43985259c3e4ebd Mon Sep 17 00:00:00 2001 From: Skyler Grey Date: Thu, 18 Sep 2025 18:03:09 +0000 Subject: [PATCH] feat(midnight): limit concurrent builds Change-Id: nvypwyuuyotpvtvquyuvxuymrunpspxp We've overloading midnight with our CI - let's stop ourselves from trying to do more things than midnight supports at once... --- packetmix/systems/midnight/lix.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 packetmix/systems/midnight/lix.nix diff --git a/packetmix/systems/midnight/lix.nix b/packetmix/systems/midnight/lix.nix new file mode 100644 index 00000000..58b82910 --- /dev/null +++ b/packetmix/systems/midnight/lix.nix @@ -0,0 +1,10 @@ +# SPDX-FileCopyrightText: 2025 FreshlyBakedCake +# +# SPDX-License-Identifier: MIT + +{ + nix.settings = { + max-jobs = 8; + cores = 1; + }; +} -- 2.43.0