summaryrefslogtreecommitdiff
path: root/modules/home/llm.nix
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-05-12 20:19:34 -0500
committerChristian <[email protected]>2026-05-12 20:19:34 -0500
commit9ed54ac3b980848a142165ad5dd8c4af92923e1e (patch)
treed7dc46b031cea4dba75501b4afcd9279b80834cf /modules/home/llm.nix
parentfbc108ce371855fe530f242520d2322eba1484d5 (diff)
Claude
Diffstat (limited to 'modules/home/llm.nix')
-rw-r--r--modules/home/llm.nix17
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";
+ };
+ };
+}