Is there any support for flake inputs to have expressions in decl?
inputs = {
var1.url = ("string1" + "string2");
};
Expressions like these throw a thunk error and I am unable to force evaluate it
inputs.${var1}.url = # ...
However, this won't work in flake inputs. No eval of any kind is allowed in inputs unfortunately. It's a stricter subset of Nix, technically
Last updated: Nov 15 2024 at 12:33 UTC