Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion dot_claude/settings.json.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
"feature-dev@claude-plugins-official": true,
"learning-output-style@claude-plugins-official": true,
"pr-review-toolkit@claude-plugins-official": true,
"ralph-wiggum@claude-plugins-official": true,
"document-skills@anthropic-agent-skills": true,
"example-skills@anthropic-agent-skills": true,
"code-simplifier@claude-plugins-official": true,
Expand Down
3 changes: 2 additions & 1 deletion dot_local/share/devbox/global/default/devbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"glow@latest",
"tree-sitter@latest",
"uv@latest",
"deno@latest"
"deno@latest",
"rustup@latest"
],
"shell": {
"init_hook": []
Expand Down
49 changes: 49 additions & 0 deletions dot_local/share/devbox/global/default/devbox.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1394,6 +1394,55 @@
}
}
},
"rustup@latest": {
"last_modified": "2026-02-23T15:40:43Z",
"plugin_version": "0.0.1",
"resolved": "github:NixOS/nixpkgs/80d901ec0377e19ac3f7bb8c035201e2e098cc97#rustup",
"source": "devbox-search",
"version": "1.28.2",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/6h6jsqm3jw1j4cyg7sfcfxaip9lqbwgw-rustup-1.28.2",
"default": true
}
],
"store_path": "/nix/store/6h6jsqm3jw1j4cyg7sfcfxaip9lqbwgw-rustup-1.28.2"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/9cqn3746dv8zka9nknpqh9bnhg0nd8np-rustup-1.28.2",
"default": true
}
],
"store_path": "/nix/store/9cqn3746dv8zka9nknpqh9bnhg0nd8np-rustup-1.28.2"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/v4fbq8arr7jpahcqs0zy4f867b3frc6l-rustup-1.28.2",
"default": true
}
],
"store_path": "/nix/store/v4fbq8arr7jpahcqs0zy4f867b3frc6l-rustup-1.28.2"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/17zvb7nfsz9x184ilpygcwrjc4hrcwjr-rustup-1.28.2",
"default": true
}
],
"store_path": "/nix/store/17zvb7nfsz9x184ilpygcwrjc4hrcwjr-rustup-1.28.2"
}
}
},
"shellcheck@latest": {
"last_modified": "2025-11-23T21:50:36Z",
"resolved": "github:NixOS/nixpkgs/ee09932cedcef15aaf476f9343d1dea2cb77e261#shellcheck",
Expand Down
3 changes: 3 additions & 0 deletions dot_zshenv.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ export PATH="$HOME/.local/bin:$PATH"
# Go binaries (default GOPATH is ~/go)
export PATH="${PATH}:${HOME}/go/bin"

# Rust (rustup toolchain)
export PATH="$HOME/.cargo/bin:$PATH"

# Bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
Expand Down
Loading