Situation:
{
outputs = {...}: {
a = {};
};
}
Running nix-editor test.nix outputs.a -v 1 produces:
{
outputs = {...}: {
a = 1;
};
}
as expected. But nix-editor test.nix outputs.a.b -v 1 produces:
{
outputs = {...}: {
a = {};
};
outputs.a.b = 1;
}
where the attrset was not placed into the function call, but on the outside.
Situation:
Running
nix-editor test.nix outputs.a -v 1produces:as expected. But
nix-editor test.nix outputs.a.b -v 1produces:where the attrset was not placed into the function call, but on the outside.