The file’s argument list contains config as does the home-manager’s argument list.
How to call them both inside the attribute set?
{
config,
lib,
pkgs,
...
}:
{
config = {
home-manager.users.${config.ncfg.primaryUserName} =
{ pkgs, config, ... }:
{
## HERE: I'd like to call both `config.`
};
};
}