nix-config/programs/aider/default.nix

13 lines
245 B
Nix
Raw Normal View History

2025-02-14 09:43:13 -08:00
{ lib, pkgs, ... }:
2025-02-02 10:38:42 -08:00
let
aiderConfig = builtins.readFile ./aider.yml;
2025-02-14 09:43:13 -08:00
aiderPkgs = import ./aider-deriv.nix { inherit lib pkgs; };
2025-02-02 10:38:42 -08:00
in
{
2025-02-14 09:43:13 -08:00
home.packages = [
aiderPkgs.withPlaywright
2025-02-02 10:38:42 -08:00
];
home.file.".aider.conf.yml".text = aiderConfig;
}