summaryrefslogtreecommitdiff
path: root/modules/vscode.nix
diff options
context:
space:
mode:
authorGrigory Shipunov2023-07-23 22:56:25 +0200
committerGrigory Shipunov2023-07-23 22:56:25 +0200
commit5b47cc39c1d94d52a791e681fa3152754b9818cd (patch)
treedd02d81bf10356377ceb1e6f0adee7474859122a /modules/vscode.nix
parent8ab21edb0d9c70322dd99ca5a60ad26c64a3d812 (diff)
retire toaster, refactor a bit
Diffstat (limited to 'modules/vscode.nix')
-rw-r--r--modules/vscode.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/vscode.nix b/modules/vscode.nix
new file mode 100644
index 0000000..0bc26d7
--- /dev/null
+++ b/modules/vscode.nix
@@ -0,0 +1,22 @@
+{ pkgs, ... }: {
+environment.systemPackages = with pkgs; [
+ (vscode-with-extensions.override {
+ vscodeExtensions = with vscode-extensions; [
+ bbenoist.nix
+ ms-python.python
+ ms-vscode-remote.remote-ssh
+ rust-lang.rust-analyzer
+ vscodevim.vim
+ james-yu.latex-workshop
+ ms-toolsai.jupyter
+ ] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
+ {
+ name = "remote-ssh-edit";
+ publisher = "ms-vscode-remote";
+ version = "0.86.0";
+ sha256 = "sha256-JsbaoIekUo2nKCu+fNbGlh5d1Tt/QJGUuXUGP04TsDI=";
+ }
+ ];
+ })
+];
+}