aboutsummaryrefslogtreecommitdiff
path: root/home/programs/aider.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/programs/aider.nix')
-rw-r--r--home/programs/aider.nix20
1 files changed, 9 insertions, 11 deletions
diff --git a/home/programs/aider.nix b/home/programs/aider.nix
index 3493f42..4c52742 100644
--- a/home/programs/aider.nix
+++ b/home/programs/aider.nix
@@ -4,18 +4,16 @@
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.git = {
+ ignores = [ ".aider*" ];
};
- programs.fish.shellAliases = {
- laider = "aider --model ollama_chat/qwen3:8b";
+ xdg.configFile."aider/config.yml".text = pkgs.lib.generators.toYAML { } {
+ model = "anthropic/claude-sonnet-4-5";
+ weak-model = "anthropic/claude-3-5-haiku";
+ attribute-author = false;
+ attribute-committer = false;
+ analytics-disable = true;
+ check-update = false;
};
}