blob: 4c52742d5158a860c16ba7f9e062f5aa6d950b90 (
plain) (
tree)
|
|
{ pkgs, ... }:
{
home.packages = with pkgs; [
aider-chat
];
programs.git = {
ignores = [ ".aider*" ];
};
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;
};
}
|