37 lines
671 B
Nix
37 lines
671 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
unstable,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
home.packages = with pkgs; [
|
|
#aider-chat-full
|
|
];
|
|
|
|
programs.aider-chat = {
|
|
enable = true;
|
|
package = pkgs.unstable.aider-chat-with-playwright;
|
|
settings = {
|
|
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;
|
|
|
|
watch-files = true;
|
|
analytics-disable = true;
|
|
check-update = false;
|
|
multiline = true;
|
|
notifications = true;
|
|
show-diffs = true;
|
|
};
|
|
};
|
|
|
|
}
|