(mirror) personal dotfiles
github.com/crescentrose/dotfiles
1{ pkgs, ... }:
2{
3 home.packages = with pkgs; [
4 # 🤓 C
5 gcc
6 pkg-config
7
8 # 🐳 Docker
9 docker-language-server
10
11 # 🐭 Go
12 go
13 gopls
14 delve
15 golangci-lint
16 golangci-lint-langserver
17
18 # ☁️ Google Cloud
19 (google-cloud-sdk.withExtraComponents [ google-cloud-sdk.components.gke-gcloud-auth-plugin ])
20 kubectl
21
22 # ☕ Javascript
23 nodejs_24
24 pnpm
25 typescript-language-server # javascript, typescript
26 vscode-langservers-extracted # html, css, json, eslint
27
28 # ❄️ Nix
29 nixd
30 nixfmt # nix formatter
31
32 # 🐍 Python
33 uv
34
35 # 🦀 Rust
36 rustup
37
38 # 📝 TOML
39 taplo
40 ];
41}