about summary refs log tree commit diff stats
path: root/internal/importer/ingest.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/importer/ingest.go')
-rw-r--r--internal/importer/ingest.go3
1 files changed, 1 insertions, 2 deletions
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),