summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-08 04:02:05 +0000
committerGitHub <[email protected]>2023-11-07 23:02:05 -0500
commitf1de38cfea711e9a788794b5a658298b4062defb (patch)
tree8f8bf518a3fa0d084df44b6b5f3dce2a9f93e99c
parent2f18ba258a123cc9b4109493bdc7b09876705674 (diff)
chore(module): don't map over actual flake outputs (#2)
-rw-r--r--module.nix10
1 files 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 = {