diff options
| author | Franck Cuny <franck@fcuny.net> | 2026-01-02 12:06:12 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2026-01-02 12:06:12 -0800 |
| commit | 9dadee200241480f3c20677bf6aea63126bb880f (patch) | |
| tree | 7757c2d7c8e2cf8bbd3fd17efbef58d5bd68b088 /home/programs/aider.nix | |
| parent | initial setup for ollama (diff) | |
| download | infra-9dadee200241480f3c20677bf6aea63126bb880f.tar.gz | |
one last big shuffle
Diffstat (limited to 'home/programs/aider.nix')
| -rw-r--r-- | home/programs/aider.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/home/programs/aider.nix b/home/programs/aider.nix new file mode 100644 index 0000000..3493f42 --- /dev/null +++ b/home/programs/aider.nix @@ -0,0 +1,21 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + aider-chat + ]; + + home.sessionVariables = { + OLLAMA_API_BASE = "http://rivendell:11434"; + AIDER_ANALYTIC = "false"; + AIDER_ANALYTICS_DISABLE = "true"; + AIDER_ATTRIBUTE_AUTHO = "false"; + AIDER_AUTO_COMMITS = "false"; + AIDER_CHECK_UPDATE = "false"; + AIDER_SHOW_DIFFS = "true"; + AIDER_SUBTREE_ONLY = "true"; + }; + + programs.fish.shellAliases = { + laider = "aider --model ollama_chat/qwen3:8b"; + }; +} |
