From f1de38cfea711e9a788794b5a658298b4062defb Mon Sep 17 00:00:00 2001 From: seth Date: Wed, 8 Nov 2023 04:02:05 +0000 Subject: chore(module): don't map over actual flake outputs (#2) --- module.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/module.nix b/module.nix index 189dc69..aa1a160 100644 --- a/module.nix +++ b/module.nix @@ -69,11 +69,13 @@ workflowLib': { }; jobs = lib.concatLists ( - mapAttrsToList ( - output: _: - workflowLib.mkMatrix ({inherit output;} // cfg.overrides.${output} or {}) + map ( + output: + workflowLib.mkMatrix ( + {inherit output;} // cfg.overrides.${output} or {} + ) ) - (getAttrs cfg.outputs self) + cfg.outputs ); in { options = { -- cgit v1.2.3