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/importer.go | 1 + internal/importer/ingest.go | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/importer') diff --git a/internal/importer/importer.go b/internal/importer/importer.go index 8a18c60..30ab2f6 100644 --- a/internal/importer/importer.go +++ b/internal/importer/importer.go @@ -11,6 +11,7 @@ import ( type Source struct { Name string + Key string Enable bool Type Type Channel string 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