nix-config/programs/aider/default.nix

11 lines
180 B
Nix

{ pkgs, ... }:
let
aiderConfig = builtins.readFile ./aider.yml;
in
{
home.packages = with pkgs; [
aider-chat-full
];
home.file.".aider.conf.yml".text = aiderConfig;
}