summaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-05-11 21:48:49 -0500
committerChristian <[email protected]>2026-05-11 21:48:49 -0500
commitfa5668fdab887a93629d090dafef1dbadf8e8c0d (patch)
tree718e944da5fe3304741421e75665feaf13d656ba /modules/home
parentb37bb85cd72dc3aca02aaa99d944f92ce75246f2 (diff)
Dev home managerHEADmain
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/dev.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/home/dev.nix b/modules/home/dev.nix
new file mode 100644
index 0000000..c801943
--- /dev/null
+++ b/modules/home/dev.nix
@@ -0,0 +1,25 @@
+{
+ config,
+ pkgs,
+ inputs,
+ ...
+}:
+{
+ programs.vscode = {
+ enable = true;
+ package = pkgs.vscode-fhs;
+
+ mutableExtensionsDir = true;
+
+ profiles.default.extensions = with pkgs.vscode-extensions; [
+ continue.continue
+ ];
+
+ profiles.default.userSettings = {
+ "continue.proxy" = "http://localhost:11434";
+ };
+ };
+
+ programs.uv.enable = true;
+ home.sessionPath = [ "$HOME/.local/bin" ];
+}