Anyone have idea how I have 2 output channels with the following test shell.nix
?
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let
neovim = pkgs.neovim.override {
configure = {
packages.myVimPackage = with pkgs.vimPlugins; {
start = [ coc-nvim ];
};
};
};
in
stdenv.mkDerivation {
name = "hello";
buildInputs = [
neovim
] ++ (with python3Packages; [
python-language-server
]);
}