Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion nixos/modules/programs/gui/vscode/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{pkgs, ...}: {
{
pkgs,
lib,
config,
...
}: {
programs.vscode = {
enable = true;
package = pkgs.vscode;
Expand Down Expand Up @@ -58,6 +63,7 @@
"<C-n>" = false;
"<C-b>" = false;
};
# "github.copilot.advanced.completionModel" = "gpt-4";
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm down to uncomment this. I believe that the default model is in fact gpt-4, but I like having this here so I know where to change it.

Also we'll need to figure out how to configure roo-code

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought the "roo-cline" was roo-code. When I launch VSCode from my intel it brings up the AI settings and bookmarks right away. I am pretty unfamiliar with VSCode though so you'll have to let me know what you mean. Do you want me to create a roo-cline derivation like I was talking about?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah no worries. Take a look at this settings UI on my Windows (non-nixOS machine):

image

However for some reason, on my NixOS machine the Language Model drop down is not rendering... I wonder if this is just a Roo Code issue, and has nothing to do with my NixOS machine. I can provide a photo of the NixOS screen tomorrow.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Screenshot 2025-07-16 at 9 34 43 AM

Here's that same photo on my NixOS. See how we do not have the Language Model drop down? @saylesss88

};

keybindings = [
Expand Down