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 8a45db4Copy full SHA for 8a45db4
flake.nix
@@ -113,7 +113,13 @@
113
}) architectures)) // (pkgs.lib.listToAttrs (map ({arch, ...} @ args: {
114
name = "image-${arch}";
115
value = containerPkg args;
116
- }) architectures));
+ }) (builtins.listToAttrs (
117
+ map (x: {
118
+ name = x.nombre;
119
+ value = x;
120
+ }) (builtins.filter (x: !builtins.hasAttr "arch" x) architectures)
121
+ ))
122
+ ));
123
124
apps = {
125
help = {
0 commit comments