chore: buildClan warn access without .config prefix
Makes behavior consistent with nixosSystem, nixpkgs. Alows access to options and other eval modules results Needed for error tracking and better devx
This commit is contained in:
@@ -65,5 +65,9 @@ rec {
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
result.config;
|
# Remove result.config in 26. July
|
||||||
|
result
|
||||||
|
// (lib.mapAttrs (
|
||||||
|
n: v: lib.warn "buildClan output: Use 'config.${n}' instead of '${n}'" v
|
||||||
|
) result.config);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user