-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphical-tools.nix
43 lines (41 loc) · 1.15 KB
/
graphical-tools.nix
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
{ pkgs, ... }: {
# programs
environment.systemPackages = with pkgs; [
fluidsynth # midi
chromium # browser
(vscode-with-extensions.override {
# vscode = vscodium;
vscodeExtensions = with vscode-extensions; [
vadimcn.vscode-lldb
timonwong.shellcheck
tamasfe.even-better-toml
serayuzgur.crates
rust-lang.rust-analyzer
redhat.vscode-yaml
ms-vscode-remote.remote-ssh
ms-vscode-remote.remote-containers
ms-python.vscode-pylance
ms-python.python
ms-dotnettools.csharp
ms-azuretools.vscode-docker
mkhl.direnv
jnoortheen.nix-ide
james-yu.latex-workshop
github.copilot-chat
github.copilot
];
})
# vscode
# nix code server
# rnix-lsp # no longer mantained
nil # 825 stars, writen in rust
# nixd # 400 stars, in theory has better document support, did not work
texlive.combined.scheme-full # latex
logseq # notes
zotero # more notes!
(blender.override { cudaSupport = true; }) # 3d modeling and video editing
obs-studio # streaming
bitwarden # password
krita
];
}