fix: no results for home-manager search
Alan Pearce alan@alanpearce.eu
Fri, 10 May 2024 12:56:26 +0200
3 files changed, 5 insertions(+), 2 deletions(-)
M internal/config/config.go → internal/config/config.go
@@ -44,6 +44,7 @@ }, Sources: map[string]*importer.Source{ "nixos": { Name: "NixOS", + Key: "nixos", Enable: true, Type: importer.Channel, Channel: "nixpkgs", @@ -60,6 +61,7 @@ }, }, "darwin": { Name: "Darwin", + Key: "darwin", Enable: false, Type: importer.Channel, Channel: "nix-darwin", @@ -76,6 +78,7 @@ }, }, "home-manager": { Name: "Home Manager", + Key: "home-manager", Enable: false, Channel: "home-manager", Type: importer.Channel,
M internal/importer/importer.go → internal/importer/importer.go
@@ -11,6 +11,7 @@ ) type Source struct { Name string + Key string Enable bool Type Type Channel string
M internal/importer/ingest.go → internal/importer/ingest.go
@@ -8,7 +8,6 @@ "net/url" "os" "reflect" "searchix/internal/options" - "strings" "github.com/bcicen/jstream" "github.com/mitchellh/mapstructure" @@ -221,7 +220,7 @@ // 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),