nixconfigs/home/modules/llm.nix

13 lines
231 B
Nix

{
pkgs,
lib,
inputs,
config,
system,
...
}:
let myAider = pkgs.aider-chat.withOptional {withPlaywright = true; withBrowser = true; withHelp = true; withBedrock = false;};
in
{
home.packages = [ myAider ];
}