diff options
-rw-r--r-- | flake.nix | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -19,7 +19,9 @@ ]; }; in { - packages.${system}.neovimCH = with pkgs; symlinkJoin { + packages.${system} = rec { + default = neovimCH; + neovimCH = with pkgs; symlinkJoin { name = "neovim"; paths = [ pkgs.neovim ]; buildInputs = [ pkgs.makeWrapper ]; @@ -39,4 +41,5 @@ ''; }; }; + }; } |