nixcfg/overlays/unstable/default.nix
Harald Hoyer 75a7cf6180 feat(unstable): add opencode to default.nix
- Added `opencode` to the list of inherited packages from `channels.unstable`.
- Ensures availability of the `opencode` tool for users by default.
2025-09-11 09:08:18 +02:00

17 lines
527 B
Nix

{ channels, ... }:
final: prev: {
inherit (channels.unstable)
gemini-cli
opencode
# 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 { }; };
# };
}