From 0eccb18ab0a7241c1f6f5fee99a3961101e35392 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 10 May 2024 12:56:26 +0200 Subject: fix: no results for home-manager search --- internal/importer/ingest.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'internal/importer/ingest.go') diff --git a/internal/importer/ingest.go b/internal/importer/ingest.go index 0044d67..08d0366 100644 --- a/internal/importer/ingest.go +++ b/internal/importer/ingest.go @@ -8,7 +8,6 @@ import ( "os" "reflect" "searchix/internal/options" - "strings" "github.com/bcicen/jstream" "github.com/mitchellh/mapstructure" @@ -221,7 +220,7 @@ func (i *OptionIngester) Process(ctx context.Context) (<-chan *options.NixOption // slog.Debug("sending option", "name", kv.Key) results <- &options.NixOption{ Name: kv.Key, - Source: strings.ToLower(i.source.Name), + Source: i.source.Key, Declarations: decs, Default: convertNixValue(i.optJSON.Default), Description: options.Markdown(i.optJSON.Description), -- cgit 1.4.1