-
I declared a bunch of options for I took a look at how mkTransposedPerSystemModule does it for the packages attribute. I fail to understand how the flake output actually gets populated, given that it defaults to {} but seems to not be initialized from any |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I think you'd have to write the logic yourself, in order to expose only the flake.deployments =
mapAttrs
(system: v: mapAttrs (name: deployment: deployment.public) v.deployments)
config.allSystems Are you sure you want to have deployments for each of the |
Beta Was this translation helpful? Give feedback.
I think you'd have to write the logic yourself, in order to expose only the
.public
value.Maybe something like this?
Are you sure you want to have deployments for each of the
systems
? I would expect a flake attribute likedeployments
to pick a specific system type for me, similar to what we have withnixosConfigurations
.