generate .continue/config.yaml via configuration

This commit is contained in:
Leyla Becker 2025-05-25 13:07:32 -05:00
parent 2c77cf2ed4
commit 393f468be2
6 changed files with 117 additions and 20 deletions

View file

@ -2,11 +2,12 @@
lib,
pkgs,
inputs,
config,
osConfig,
...
}: let
nix-development-enabled = osConfig.host.nix-development.enable;
ai-tooling-enabled = osConfig.services.ollama.enable;
ai-tooling-enabled = config.user.continue.enable && osConfig.host.ai.enable;
in {
nixpkgs = {
overlays = [
@ -14,9 +15,6 @@ in {
];
};
# TODO: when ai-tooling is enabled configure ~/.continue/config.yaml to use remote hosted on defiant
# TODO: when ai-tooling is enabled configure ~/.continue/config.yaml to use use better models hosted on defiant
programs = {
bash.shellAliases = {
code = "codium";
@ -59,10 +57,8 @@ in {
"expr" = "import <nixpkgs> {}";
};
})
(lib.mkIf osConfig.services.ollama.enable {
(lib.mkIf ai-tooling-enabled {
"continue.telemetryEnabled" = false;
# builtins.elemAt osConfig.services.ollama.loadModels 0;
})
];