I want to add my local bindir (~/.local/bin) to my path in my new setup (old KDE one works fine, but uses a KDE-specific file, plasma-workspace/env/path.sh). Now, I'd like to move to putting such manual environment definitions in ~/.config/environment.d, in various conf files there. I already have a few there and they work fine. Now, I added on to update my path:
Code: Select all
cat ~/.config/environment.d/05-path.conf
PATH=$HOME/.local/bin:$PATH
and this does not get picked up, not after running systemctl --user daemon-reload, not after a reboot. I did check that the path definition itself is fine:
Code: Select all
echo $HOME/.local/bin:$PATH
/home/equaeghe/.local/bin:/home/equaeghe/.config/carapace/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/bin:/usr/lib/llvm/21/bin:/usr/lib/llvm/20/bin
Any help getting my path set as it should appreciated.