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