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