From 406509dc549cb58d788a3dbd5572f28008c84546 Mon Sep 17 00:00:00 2001 From: Vika Date: Wed, 4 Sep 2024 22:15:32 +0300 Subject: Make LLM enhancements optional --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index c190706..4b78a24 100644 --- a/flake.nix +++ b/flake.nix @@ -31,6 +31,9 @@ in { packages = { bowl = bowl; + bowl-no-llm = bowl.override { + withLLMEnhancements = false; + }; default = self.packages.${system}.bowl; # Needed for translations xtr = pkgs.callPackage ./pkgs/xtr {}; @@ -38,6 +41,7 @@ checks = { bowl = self.packages.${system}.bowl; + bowl-no-llm = self.packages.${system}.bowl-no-llm; deps = self.packages.${system}.bowl.cargoArtifacts; clippy = self.packages.${system}.bowl.clippy; -- cgit 1.4.1