We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 007cb7a commit b4ab697Copy full SHA for b4ab697
flake.nix
@@ -113,7 +113,9 @@
113
}) architectures)) // (pkgs.lib.listToAttrs (map ({arch, ...} @ args: {
114
name = "image-${arch}";
115
value = containerPkg args;
116
- }) architectures));
+ }) (pkgs.lib.flip builtins.mapAttrs (
117
+ lib.groupBy (x: x.arch) architectures
118
+ ) (group: builtins.head group))));
119
120
apps = {
121
help = {
0 commit comments