nixcfg/overlays/unstable/default.nix
2026-01-17 14:48:45 +01:00

26 lines
764 B
Nix

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