nixcfg/overlays/unstable/default.nix
Harald Hoyer a4d34ea7d1 feat: add package-lock.json for claude-code
Introduced a new `package-lock.json` for the `claude-code` project. This ensures consistent dependency management and locks all required versions for reproducible builds.
2025-05-02 11:16:19 +02:00

17 lines
443 B
Nix

{ channels, ... }:
final: prev: {
inherit (channels.unstable)
jetbrains-toolbox
ollama
open-webui
aider-chat
vscode
;
goose-cli = channels.unstable.callPackage ./goose.nix { };
claude-code = channels.unstable.callPackage ./claude-code/package.nix { };
vscode-extensions = channels.unstable.vscode-extensions // {
rooveterinaryinc = { roo-cline = channels.unstable.callPackage ./roo-code.nix { }; };
};
}