mirror of
https://github.com/softinio/nix-config.git
synced 2025-08-31 23:06:40 -07:00
11 lines
180 B
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;
|
|
}
|