nix-config/programs/aider/default.nix

12 lines
190 B
Nix
Raw Normal View History

{ pkgs, ... }:
2025-02-02 10:38:42 -08:00
let
aiderConfig = builtins.readFile ./aider.yml;
in
{
home.packages = with pkgs; [
aider-chat.withPlaywright
2025-02-02 10:38:42 -08:00
];
home.file.".aider.conf.yml".text = aiderConfig;
}