nixcfg/overlays/unstable/default.nix
Harald Hoyer f35adc51ce feat(nix): enable claude-code in unstable overlay
- Uncommented `claude-code` in the unstable overlay for inclusion.
- Commented the manual `claude-code` package definition to avoid duplication.
2026-01-12 11:06:17 +01:00

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 { }; };
# };
}