aboutsummaryrefslogblamecommitdiff
path: root/home/programs/aider.nix
blob: 3493f42e9a52934365bca46811eccd0adfbf517e (plain) (tree)




















                                                  
{ 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";
  };
}