From 6eda4acc251fed0afbf5f1a85a63e321d8234799 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Fri, 10 May 2024 19:48:45 -0700 Subject: Initial Commit --- modules/home/vscode.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 modules/home/vscode.nix (limited to 'modules/home/vscode.nix') diff --git a/modules/home/vscode.nix b/modules/home/vscode.nix new file mode 100644 index 0000000..3047d33 --- /dev/null +++ b/modules/home/vscode.nix @@ -0,0 +1,22 @@ +{ pkgs, ... }: + +{ + programs.vscode = { + enable = true; + package = pkgs.vscodium; + + extensions = with pkgs.vscode-extensions; [ + jdinhlife.gruvbox + vscode-icons-team.vscode-icons + + jnoortheen.nix-ide + golang.go + ]; + + userSettings = { + "workbench.colorTheme" = "Gruvbox Dark Medium"; + "workbench.iconTheme" = "vscode-icons"; + "window.titleBarStyle" = "custom"; + }; + }; +} -- cgit v1.2.3