treewide: use pkgs.config instead of config.nixpkgs.config

`pkgs` may be passed in externally, in which case `config.nixpkgs.config` will not be set.

Follow-up to #257458.
This commit is contained in:
K900
2023-10-01 20:48:40 +03:00
parent 58aa673711
commit e53c99eb17
3 changed files with 3 additions and 3 deletions

View File

@@ -237,7 +237,7 @@ in
# copy-pasted from the wrapper; TODO: figure out fix
applicationName = cfg.package.binaryName or (lib.getName cfg.package);
nixpkgsConfig = config.nixpkgs.config.${applicationName} or {};
nixpkgsConfig = pkgs.config.${applicationName} or {};
optionConfig = cfg.wrapperConfig;
nmhConfig = {
enableBrowserpass = nmh.browserpass;