Skip to content

Commit 9381f85

Browse files
chore: remove remaining bun references
Swap bun for deno in the dotfiles-toolchain dev shell, drop bun from the nvim-only tool PATH (deno is on the regular PATH via home.packages, so Neovim inherits it), and delete the stale npm-tools/ gitignore entry left over from the pre-Nix npm-tools setup.
1 parent 289cfa0 commit 9381f85

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,3 @@ nvim_issue
3434
# Applications storing files ending up in stow/
3535
stow/shared/.config/zed/prompts
3636
stow/Darwin/Library/Application Support/lazygit/state.yml
37-
38-
# npm-tools installed packages (lockfile bun.lockb IS tracked)
39-
npm-tools/node_modules/

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@
8686
# stable.${system}.xxx
8787

8888
# Unstable packages
89-
unstable.${system}.bun
89+
unstable.${system}.deno
9090
unstable.${system}.go_latest
9191
unstable.${system}.nodejs
9292
unstable.${system}.pnpm
9393
unstable.${system}.python3
9494
unstable.${system}.ruby
9595
];
9696
shellHook = ''
97-
echo -e "\033[32m[dotfiles-toolchain] bun $(bun --version) | $(go version | awk '{print $1" "$3}') | lua $(lua -v 2>&1 | awk '{print $2}') | node $(node -v) (npm $(npm -v)) | pnpm $(pnpm -v) | python $(python --version | awk '{print $2}') | $(ruby -v | cut -d' ' -f1-2)\033[0m"
97+
echo -e "\033[32m[dotfiles-toolchain] $(deno --version | awk 'NR==1{print $1" "$2}') | $(go version | awk '{print $1" "$3}') | lua $(lua -v 2>&1 | awk '{print $2}') | node $(node -v) (npm $(npm -v)) | pnpm $(pnpm -v) | python $(python --version | awk '{print $2}') | $(ruby -v | cut -d' ' -f1-2)\033[0m"
9898
'';
9999
};
100100
};

nix/shared/home/common.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ in
216216
home.file.".config/nvim-deps-path".text = lib.makeBinPath (
217217
with unstable;
218218
[
219-
bun
220219
cmake
221220
beamPackages.elixir
222221
gcc

0 commit comments

Comments
 (0)