You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have simple question I have a shells/custom/default.nix where:
{lib,pkgs,namespace,# if I remove this because unused, the `args` do not contain it anymore?
...
}@args:
lettoolchains=import../toolchain.nixargs;# args is not the full attrset?in{
...
}
I am unsure why I need to name all keys in args in the function arguments, when I want to forward to my function toolchain.nix.
If I remove namespace in {...}@args the below import does not work anymore? Why is that?
The text was updated successfully, but these errors were encountered:
Hello,
Great project!
I have simple question I have a
shells/custom/default.nix
where:I am unsure why I need to name all keys in
args
in the function arguments, when I want to forward to my functiontoolchain.nix
.If I remove
namespace
in{...}@args
the below import does not work anymore? Why is that?The text was updated successfully, but these errors were encountered: