diff options
Diffstat (limited to 'modules/home/llm.nix')
| -rw-r--r-- | modules/home/llm.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/home/llm.nix b/modules/home/llm.nix new file mode 100644 index 0000000..c303430 --- /dev/null +++ b/modules/home/llm.nix @@ -0,0 +1,17 @@ +{ + config, + pkgs, + inputs, + ... +}: +{ + programs.vscode = { + profiles.default.extensions = with pkgs.vscode-extensions; [ + continue.continue + ]; + + profiles.default.userSettings = { + "continue.proxy" = "http://localhost:11434"; + }; + }; +} |
