nixcfg/overlays/unstable/default.nix
Harald Hoyer ec152bebf1 feat(nix): enable and comment out unstable packages
- Un-commented `opencode` and `claude-code` to enable their usage in the `unstable` overlay.
- Commented out the redefined `claude-code` package to avoid redundancy.
- Improves clarity and ensures streamlined package management in the overlay.
2026-02-10 11:57:17 +01:00

27 lines
770 B
Nix

{ channels, ... }:
final: prev: {
inherit (channels.unstable)
gemini-cli
opencode
tailscale
claude-code
# open-webui
# vscode
# nodejs_20
;
/*
gnome-remote-desktop = channels.unstable.gnome-remote-desktop.overrideAttrs (prevAttrs: {
patches = (prevAttrs.patches or [ ]) ++ [
./gnome-remote-desktop-mac.patch
];
});
*/
# 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 { }; };
# };
}