From e6b01f205cd9c007c1f7b2f9317c78f97fb38339 Mon Sep 17 00:00:00 2001 From: Mykhailo Nikiforov Date: Sun, 24 Mar 2024 18:34:32 +0200 Subject: [PATCH] feat: add lazyVim package output --- flake.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 65354e3..852d30e 100644 --- a/flake.nix +++ b/flake.nix @@ -31,10 +31,12 @@ overlays = [overlayFlakeInputs overlayLazyVim]; }; in rec { - packages.default = pkgs.lazyVim; - apps.default = { + packages.lazyVim = pkgs.lazyVim; + apps.lazyVim = { type = "app"; program = "${packages.default}/bin/nvim"; }; + packages.default = packages.lazyVim; + apps.default = apps.lazyVim; }); }