fix(neovim): make ollama optional

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2025-01-16 21:03:29 -03:00
parent 925551ec26
commit 0ad475e6bf
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
2 changed files with 26 additions and 12 deletions

View file

@ -25,7 +25,11 @@
};
outputs =
{ home-manager, nixpkgs, ... }@inputs:
{
home-manager,
nixpkgs,
...
}@inputs:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};