aboutsummaryrefslogtreecommitdiff
path: root/home/programs/aider.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--home/programs/aider.nix21
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";
+ };
+}