nix-config/programs/aider/default.nix

18 lines
370 B
Nix
Raw Normal View History

2025-02-02 10:38:42 -08:00
{ 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;
}