diff options
| author | seth <[email protected]> | 2023-12-30 05:19:10 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-30 05:19:10 -0500 |
| commit | 581eb6b448584e36c2717239036a650b1568ef8c (patch) | |
| tree | 8e9599511ef0a791dc7c436c839f6ce6e82428f1 | |
| parent | a4b2071887255a1bcbfa3613297cbc31fe03c1db (diff) | |
ci: correctly map system configurations
| -rw-r--r-- | dev/ci.nix | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -22,13 +22,11 @@ } ( - let - mapCfgsToDerivs' = type: mapCfgsToDerivs (getCompatibleCfgs self.${type}); - in - lib.attrsets.mergeAttrsList (map mapCfgsToDerivs' [ - # "darwinConfigurations" - "nixosConfigurations" - ]) + lib.genAttrs [ + # "darwinConfigurations" + "nixosConfigurations" + ] + (type: mapCfgsToDerivs (getCompatibleCfgs self.${type})) ) ]; } |
