aboutsummaryrefslogblamecommitdiff
path: root/home/programs/aider.nix
blob: 2346c5741df537475780104dd6a59fb626ef0a54 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                              

                            

    
                                                                     
                                          
                                                     



                                

    
{ 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-latest";
    attribute-author = false;
    attribute-committer = false;
    analytics-disable = true;
    check-update = false;
  };
}