config/bash/shell sources /etc/profile.d/nvm.sh, switches Node per project from .nvmrc, and puts PNPM_HOME on PATH. None of it worked on a fresh machine. nvm was never installed -- it is a Terra package, present here since before Panama -- and the source was unconditional, so every shell on a new box opened with an error before it got as far as failing to find nvm. That is the second instance of the same bug. $HOME/.cargo/env was the first, and fixing it one file at a time is why this one survived: the dependency contract scanned setup/scripts, bin and the quickshell helpers, but never config/bash -- the one place in this repository whose entire job is to name tools and source the files that provide them. So it scans it now, and checks the shape rather than the instance: a literal path sourced without testing it exists is a finding, wherever it appears. It found the nvm line, and authselect behind the fingerprint aliases. Node and pnpm move to nvm with it. They were declared as dnf packages while the machine ran them from ~/.nvm, which is not a preference so much as a contradiction -- a system Node earlier on PATH wins every `nvm use`, so the per-project switching this shell config sets up could never have worked. nvm install --lts, then pnpm inside it, so pnpm travels with the Node version it belongs to instead of outliving it. Claude-Session: https://claude.ai/code/session_01Q84axqUE5inJhf5Jz9CFy1
33 lines
548 B
Plaintext
33 lines
548 B
Plaintext
bison
|
|
clang-analyzer
|
|
clangd
|
|
cmake
|
|
compat-lua
|
|
composer
|
|
dotnet-sdk-9.0
|
|
g++
|
|
gcc
|
|
go
|
|
gem
|
|
ImageMagick
|
|
java-latest-openjdk-devel
|
|
luarocks
|
|
maven
|
|
# Node is installed through nvm rather than dnf, because config/bash/shell
|
|
# switches version per project from .nvmrc and a system Node earlier on PATH
|
|
# would win every switch. install-packages does the rest.
|
|
nvm
|
|
pipx
|
|
php
|
|
php-fpm
|
|
# Rootless containers, and the backend for the Containers settings page.
|
|
podman
|
|
python3-devel
|
|
python3-gobject
|
|
python3-tkinter
|
|
python3-torch
|
|
python3-virtualenv
|
|
ripgrep
|
|
ruby
|
|
sqlite3
|