From c4e75c4c1aafa84e2c758cf82e7102cc72ce934e Mon Sep 17 00:00:00 2001 From: diniamo Date: Sun, 10 Nov 2024 11:03:00 +0100 Subject: [PATCH] wrapper: get meta from wrapped neovim package --- modules/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/modules/default.nix b/modules/default.nix index ee7febd..a2f8730 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -128,9 +128,10 @@ in { # will return the configuration in full. passthru.neovimConfig = vimOptions; - meta = { - description = "Wrapped version of Neovim with additional helper scripts"; - mainProgram = "nvim"; - }; + meta = + neovim-wrapped.meta + // { + description = "Wrapped Neovim package with helper scripts to print the config (path)"; + }; }; }