From 8614f93c8b7c797356de06dd54fc777477e892a0 Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Mon, 20 Feb 2023 13:58:21 -0500 Subject: [PATCH] Add more vscode-extensions --- home/default.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/home/default.nix b/home/default.nix index 24dda37..6c3439e 100644 --- a/home/default.nix +++ b/home/default.nix @@ -422,7 +422,20 @@ in { vscode = { enable = true; extensions = with pkgs.vscode-extensions; - [] ++ lib.optionals stdenv.isLinux [ms-vsliveshare.vsliveshare]; + [ + bbenoist.nix + github.vscode-pull-request-github + golang.go + golang.redhat.vscode-yaml + hashicorp.terraform + ms-dotnettools.csharp + ms-kubernetes-tools.vscode-kubernetes-tools + ms-pyright.pyright + ms-python.python + ] + ++ lib.optionals stdenv.isLinux [ + ms-vsliveshare.vsliveshare + ]; }; };