all repos — nixfiles @ 75a4e09f1d241f7882a86d7f9c4aa1804a981209

System and user configuration, managed by nix and home-manager

move overlays to root folder

Alan Pearce
commit

75a4e09f1d241f7882a86d7f9c4aa1804a981209

parent

21398bece441d9afaa8e74539d993c3e976ebce0

1 file changed, 14 insertions(+), 0 deletions(-)

changed files
M user/overlays/extra-packages.nixoverlays/extra-packages.nix
@@ -9,6 +9,20 @@ };
} ) ); + vimPlugins = super.vimPlugins.extend (final: prev: { + coc-tabnine = + let + inherit (super) tabnine; + in + prev.coc-tabnine.overrideAttrs { + buildInputs = [ tabnine ]; + + postFixup = '' + mkdir -p $target/binaries/${tabnine.version} + ln -s ${tabnine}/bin/ $target/binaries/${tabnine.version}/${tabnine.passthru.platform} + ''; + }; + }); enchant = super.enchant.overrideAttrs (old: { configureFlags = old.configureFlags ++ [ "--without-hspell" ] # builtins.filter (c: c != "--with-hspell") old.configureFlags