Introduce VSCode configuration and integrate roo-cline extension. This includes adding roo-cline to vscode extensions and setting up metadata for its marketplace details.
17 lines
382 B
Nix
17 lines
382 B
Nix
{ channels, ... }:
|
|
final: prev: {
|
|
inherit (channels.unstable)
|
|
jetbrains-toolbox
|
|
ollama
|
|
open-webui
|
|
claude-code
|
|
aider-chat
|
|
vscode
|
|
;
|
|
|
|
goose-cli = channels.unstable.callPackage ./goose.nix { };
|
|
vscode-extensions = channels.unstable.vscode-extensions // {
|
|
rooveterinaryinc = { roo-cline = channels.unstable.callPackage ./roo-code.nix { }; };
|
|
};
|
|
}
|