init llm tooling
Some checks failed
/ check (push) Failing after 2m17s

This commit is contained in:
iofq 2026-02-26 21:58:32 -06:00
parent 802074f233
commit 58ae27d6d1
4 changed files with 119 additions and 12 deletions

View file

@ -46,6 +46,7 @@
url = "github:abrenneke/jj-vine";
flake = false;
};
llm-agents.url = "github:numtide/llm-agents.nix";
};
outputs =
{
@ -64,15 +65,15 @@
config.allowUnfree = true;
overlays = [
inputs.nvim.overlays.default
inputs.llm-agents.overlays.default
inputs.self.overlays.stable-packages
(import ./overlays { inherit inputs; })
];
};
eachSystem = f: nixpkgs.lib.genAttrs (import systems) (system: f nixpkgs.legacyPackages.${system});
treefmtEval = eachSystem (pkgs: inputs.treefmt-nix.lib.evalModule pkgs ./treefmt.nix);
in
{
packages = eachSystem (pkgs: import ./pkgs { inherit inputs; });
packages = eachSystem (pkgs: import ./pkgs { inherit inputs pkgs; });
overlays = import ./overlays { inherit inputs; };
formatter = eachSystem (pkgs: treefmtEval.${pkgs.system}.config.build.wrapper);
nixosConfigurations = import ./nixos {