1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

aider-chat: add module

This commit is contained in:
Aguirre Matteo 2025-09-26 11:20:22 -03:00 committed by Austin Horstman
parent fb2ae64bed
commit 9947d3c003
4 changed files with 82 additions and 0 deletions

View file

@ -0,0 +1,9 @@
architect: true
auto-accept-architect: false
cache-prompts: true
check-model-accepts-settings: false
dark-mode: true
dirty-commits: false
lint: true
show-model-warnings: false
verify-ssl: false

View file

@ -0,0 +1 @@
{ aider-chat-example-config = ./example-config.nix; }

View file

@ -0,0 +1,22 @@
{
programs.aider-chat = {
enable = true;
settings = {
verify-ssl = false;
architect = true;
auto-accept-architect = false;
show-model-warnings = false;
check-model-accepts-settings = false;
cache-prompts = true;
dark-mode = true;
dirty-commits = false;
lint = true;
};
};
nmt.script = ''
assertFileExists home-files/.aider.conf.yml
assertFileContent home-files/.aider.conf.yml \
${./aider.conf.yml}
'';
}