add ai tools package on my nix configs

This commit is contained in:
Rasyidan Akbar F. 2025-09-30 14:07:56 +07:00
commit ac8cedebe4
8 changed files with 235 additions and 1891 deletions

View file

@ -14,9 +14,13 @@
nvim-bundle.url = "github:jla2000/nvim-bundle";
nvim-bundle.inputs.nixpkgs.follows = "nixpkgs";
nix-ai-tools.url = "github:numtide/nix-ai-tools";
nix-ai-tools.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs@{ self, nixpkgs, darwin, home-manager, ghostty, ... }:
outputs =
inputs@{ self, nixpkgs, darwin, home-manager, ghostty, nix-ai-tools, ... }:
let
inherit (nixpkgs.lib) genAttrs;