nixcfg/overlays/unstable/default.nix
Harald Hoyer 734bd82b6c chore(nix): disable opencode in unstable overlay
- Commented out `opencode` from the unstable overlay in default.nix.
- Ensures the package is excluded without permanent removal.
2025-11-24 20:56:56 +01:00

18 lines
543 B
Nix

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