Skip to content

Commit

Permalink
Fix kernel attrs in package search
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Oct 20, 2024
1 parent 1f47a07 commit 93bbd6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion codedown.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ rec {

packageSearch = common.searcher' {
# Note that we deliberately don't include "testing" packages in the searcher
packages = everythingEnv.config.builtKernels
packages =
(lib.mapAttrs' (n: v: lib.nameValuePair ("kernels." + n) v) everythingEnv.config.builtKernels)
// (lib.mapAttrs' (n: v: lib.nameValuePair ("exporters." + n) v) everythingEnv.config.builtExporters)
// (lib.mapAttrs' (n: v: lib.nameValuePair n v) everythingEnv.config.packages)
// { "language-servers.spellchecker" = spellchecker; }
Expand Down

0 comments on commit 93bbd6e

Please sign in to comment.