From 2b8d0af2e6b5a4e52c93ab86875c52eb5376abe4 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 20 Jul 2024 16:55:56 +0300 Subject: [PATCH] modules: add meta.mainProgram to symlinkJoined Neovim wrapper --- modules/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/default.nix b/modules/default.nix index 2099749..14c41c9 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -130,5 +130,10 @@ in { name = "nvf-with-helpers"; paths = [neovim-wrapped printConfig printConfigPath]; postBuild = "echo helpers added"; + + meta = { + description = "Wrapped version of Neovim with additional helper scripts"; + mainProgram = "nvim"; + }; }; }