openrouter will be eaten by claude-code

This commit is contained in:
TheK0tYaRa 2026-03-13 15:34:12 +02:00
parent 575e2db66c
commit fd6ca65cb2
4 changed files with 110 additions and 35 deletions

View file

@ -31,6 +31,7 @@
url = "github:mozilla/sccache";
inputs.nixpkgs.follows = "nixpkgs";
};
claude-code.url = "github:sadjow/claude-code-nix/latest";
};
outputs =
inputs@{
@ -44,6 +45,7 @@
nix-flatpak,
kernel-src,
sccache,
claude-code,
...
}:
let
@ -51,7 +53,10 @@
# pkgs = nixpkgs.${system}.packages;
pkgs = nixpkgs {
inherit system;
overlays = [ sccache.overlays.default ];
overlays = [
sccache.overlays.default
claude-code.overlays.default
];
};
in
{