nixcfg/overlays/unstable/default.nix
Harald Hoyer 700b832e76 chore(unstable): re-enable gemini-cli in default.nix
- Restored `gemini-cli` to the list of inherited packages from `channels.unstable`.
- Commented out the previous explicit declaration to avoid duplication.
2025-09-11 09:03:49 +02:00

16 lines
514 B
Nix

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