From fd9bd59a4032b8bd9885d11c90d4d6d4d0d8f30d Mon Sep 17 00:00:00 2001 From: Skyler Grey Date: Wed, 8 Oct 2025 19:22:18 +0000 Subject: [PATCH] ci: disable nilla overrides Change-Id: kvuwzypylkxtzzrvlqrywusqnwmwnour The default overrides in nilla slow things down when evaluating parts of a configuration - even parts that don't need them! Although it's a shame I think that disabling them is the correct course of action for now... --- packetmix/nilla.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packetmix/nilla.nix b/packetmix/nilla.nix index ca134f81..1ccb1234 100644 --- a/packetmix/nilla.nix +++ b/packetmix/nilla.nix @@ -21,6 +21,8 @@ nilla.create ( ]; config = { + assertions = lib.modules.overrides.force []; # The default assertions currently force us to fetch every input to evaluate, and end up causing more trouble than they are worth. Let's skip them... + packages.allNixOSSystems = { systems = [ "x86_64-linux" ]; -- 2.43.0 From ccb9d194d959f78c27f49d80138c66e78f14382a Mon Sep 17 00:00:00 2001 From: Skyler Grey Date: Wed, 8 Oct 2025 19:24:54 +0000 Subject: [PATCH] ci(s): fix github mirror Change-Id: wsuryrqslnqnywtksvzrmmlvtvwrroqm Due to a botched copy-paste job, we were accidentally trying to push PacketMix instead of sprinkles here. Oops --- .tangled/workflows/github.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tangled/workflows/github.yml b/.tangled/workflows/github.yml index 1be3fcf4..426bc808 100644 --- a/.tangled/workflows/github.yml +++ b/.tangled/workflows/github.yml @@ -56,7 +56,7 @@ steps: command: | cd .. git clone https://git.freshlybakedca.ke/patisserie.git:workspace=projects/sprinkles.git - cd packetmix + cd sprinkles git remote add github git@github.com:FreshlyBakedCake/Sprinkles.git git fetch github git push github origin/release:refs/heads/release -- 2.43.0