From 4d573a1e75688d75508e426243a2abaf121f6376 Mon Sep 17 00:00:00 2001 From: Alexander Nortung Date: Mon, 18 Jul 2022 21:14:41 +0000 Subject: [PATCH] nvim-tree: git.enable expects a boolean (#24) --- plugins/utils/nvim-tree.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/utils/nvim-tree.nix b/plugins/utils/nvim-tree.nix index 3740d2b7..a78dabef 100644 --- a/plugins/utils/nvim-tree.nix +++ b/plugins/utils/nvim-tree.nix @@ -116,7 +116,7 @@ in git = { enable = mkOption { - type = types.nullOr types.str; + type = types.nullOr types.bool; default = null; description = "Enable git integration"; };