I am wondering how to override the default argument lib such that I can pin it to my nixpkgs library (e.g. input.nixpkgs.lib)
Can I do this with?
{
inputs,
...
}:
{
_module.args.lib = inputs.nixpkgs.lib;
}
and then every module will use lib with my thing?
I guess mkFlake passes the lib it locks from the input?