Your one-stop-cake-shop for everything Freshly Baked has to offer

ci: disable nilla overrides

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...

Changed files
+2
packetmix
+2
packetmix/nilla.nix
··· 21 ]; 22 23 config = { 24 packages.allNixOSSystems = { 25 systems = [ "x86_64-linux" ]; 26
··· 21 ]; 22 23 config = { 24 + 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... 25 + 26 packages.allNixOSSystems = { 27 systems = [ "x86_64-linux" ]; 28