From 756a23ebb075d385ed7ae3cdb9b4fc7453dfc4e9 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 2 Apr 2023 21:38:54 +0300 Subject: [PATCH] fix: incorrect plugin name in the list --- lib/types/plugins.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types/plugins.nix b/lib/types/plugins.nix index 71e6a14..f9afa32 100644 --- a/lib/types/plugins.nix +++ b/lib/types/plugins.nix @@ -72,7 +72,7 @@ with lib; let "fidget-nvim" "diffview-nvim" "todo-comments" - "dart-tools" + "flutter-tools" ]; # You can either use the name of the plugin or a package. pluginsType = with types; listOf (nullOr (either (enum availablePlugins) package));