blob: 2a34bcf5faeb714a98b35d890e15f3eb6156417e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{ unstablePkgs, ... }:
let
extensions = with unstablePkgs.vscode-extensions; [
# Microsoft Extensions
ms-vscode.hexeditor
ms-vscode-remote.remote-containers
ms-vscode-remote.remote-ssh
ms-azuretools.vscode-docker
github.codespaces
github.copilot
github.copilot-chat
# Usability
vscodevim.vim
waderyan.gitblame
mkhl.direnv
alefragnani.bookmarks
# Language support
ms-vscode.makefile-tools
ms-vscode.cpptools-extension-pack
mesonbuild.mesonbuild
ms-python.python
ms-python.debugpy
charliermarsh.ruff
golang.go
jnoortheen.nix-ide
rust-lang.rust-analyzer
haskell.haskell
justusadam.language-haskell
elixir-lsp.vscode-elixir-ls
# Pretty :3
aaron-bond.better-comments
catppuccin.catppuccin-vsc-icons
catppuccin.catppuccin-vsc
jdinhlife.gruvbox
];
code =
with unstablePkgs;
vscode-with-extensions.override {
vscode = vscodium;
vscodeExtensions = extensions;
};
in
{
environment.systemPackages = [ code ];
}
|