- Enabled `claude-code` in the unstable overlay by uncommenting its entry. - Commented out its previous custom package definition for consistency.
19 lines
561 B
Nix
19 lines
561 B
Nix
{ channels, ... }:
|
|
final: prev: {
|
|
inherit (channels.unstable)
|
|
gemini-cli
|
|
# opencode
|
|
tailscale
|
|
claude-code
|
|
# open-webui
|
|
# vscode
|
|
# nodejs_20
|
|
;
|
|
|
|
# goose-cli = channels.unstable.callPackage ./goose.nix { };
|
|
# claude-code = channels.unstable.callPackage ./claude-code/package.nix { };
|
|
# gemini-cli = channels.unstable.callPackage ./gemini-cli/package.nix { };
|
|
# vscode-extensions = channels.unstable.vscode-extensions // {
|
|
# rooveterinaryinc = { roo-cline = channels.unstable.callPackage ./roo-code.nix { }; };
|
|
# };
|
|
}
|