From fed83cd8ce180ddcc5eab0090f9c645ddac05baf Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 5 Feb 2023 16:15:02 +0300 Subject: [PATCH] feat: add cellular automaton to plugin list --- modules/lib/types-plugin.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/lib/types-plugin.nix b/modules/lib/types-plugin.nix index ee014a0..e85668e 100644 --- a/modules/lib/types-plugin.nix +++ b/modules/lib/types-plugin.nix @@ -50,6 +50,7 @@ with lib; let "cheatsheet-nvim" "colorizer" "venn-nvim" + "cellular-automaton" ]; pluginsType = with types; listOf (nullOr (either (enum availablePlugins) package));