about summary refs log tree commit diff stats
path: root/internal/config
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/config.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index adb8d7b..ff21a54 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -44,6 +44,7 @@ var defaultConfig = Config{
 	Sources: map[string]*importer.Source{
 		"nixos": {
 			Name:          "NixOS",
+			Key:           "nixos",
 			Enable:        true,
 			Type:          importer.Channel,
 			Channel:       "nixpkgs",
@@ -60,6 +61,7 @@ var defaultConfig = Config{
 		},
 		"darwin": {
 			Name:          "Darwin",
+			Key:           "darwin",
 			Enable:        false,
 			Type:          importer.Channel,
 			Channel:       "nix-darwin",
@@ -76,6 +78,7 @@ var defaultConfig = Config{
 		},
 		"home-manager": {
 			Name:          "Home Manager",
+			Key:           "home-manager",
 			Enable:        false,
 			Channel:       "home-manager",
 			Type:          importer.Channel,