remove aider derivation as no longer needed

This commit is contained in:
Salar Rahmanian 2025-03-09 16:11:03 -07:00
parent 85942195f4
commit 8a8c9597bb
2 changed files with 3 additions and 208 deletions

View file

@ -1,12 +1,11 @@
{ lib, pkgs, ... }:
{ pkgs, ... }:
let
aiderConfig = builtins.readFile ./aider.yml;
aiderPkgs = import ./aider-deriv.nix { inherit lib pkgs; };
in
{
home.packages = [
aiderPkgs.withPlaywright
home.packages = with pkgs; [
aider-chat.withPlaywright
];
home.file.".aider.conf.yml".text = aiderConfig;
}