mirror of
https://github.com/softinio/nix-config.git
synced 2025-09-03 16:16:42 -07:00
add settings for aider
This commit is contained in:
parent
fda4b11a5f
commit
78e99ced02
5 changed files with 459 additions and 1 deletions
17
programs/aider/default.nix
Normal file
17
programs/aider/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
aiderConfig = builtins.readFile ./aider.yml;
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
aider-chat
|
||||
streamlit
|
||||
python3Packages.greenlet
|
||||
python3Packages.llama-index-core
|
||||
python3Packages.llama-index-embeddings-huggingface
|
||||
python3Packages.playwright
|
||||
python3Packages.watchdog
|
||||
];
|
||||
home.file.".aider.conf.yml".text = aiderConfig;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue