1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 23:21:02 +01:00
home-manager/tests/modules/programs/aider-chat/example-config.nix
2025-09-26 14:52:49 -05:00

22 lines
494 B
Nix

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