Updates and added an aider derivation

This commit is contained in:
Salar Rahmanian 2025-02-14 09:43:13 -08:00
parent 1a6b7782a0
commit 4da6e4b6b8
10 changed files with 277 additions and 88 deletions

View file

@ -1,17 +1,12 @@
{ pkgs, ... }:
{ lib, pkgs, ... }:
let
aiderConfig = builtins.readFile ./aider.yml;
aiderPkgs = import ./aider-deriv.nix { inherit lib pkgs; };
in
{
home.packages = with pkgs; [
aider-chat
streamlit
python3Packages.greenlet
python3Packages.llama-index-core
python3Packages.llama-index-embeddings-huggingface
python3Packages.playwright
python3Packages.watchdog
home.packages = [
aiderPkgs.withPlaywright
];
home.file.".aider.conf.yml".text = aiderConfig;
}