nixcfg/overlays/unstable/default.nix
Harald Hoyer 86a7dc1cfe chore(nix): update unstable overlay for claude-code
- Enabled `claude-code` in the unstable overlay by uncommenting its entry.
- Commented out its previous custom package definition for consistency.
2025-11-24 20:58:15 +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 { }; };
# };
}