diff options
| author | seth <[email protected]> | 2023-11-08 04:02:05 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-11-07 23:02:05 -0500 |
| commit | f1de38cfea711e9a788794b5a658298b4062defb (patch) | |
| tree | 8f8bf518a3fa0d084df44b6b5f3dce2a9f93e99c /module.nix | |
| parent | 2f18ba258a123cc9b4109493bdc7b09876705674 (diff) | |
chore(module): don't map over actual flake outputs (#2)
Diffstat (limited to 'module.nix')
| -rw-r--r-- | module.nix | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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 = { |
