Use APT to install the rust toolchain
This commit is contained in:
parent
3929472997
commit
3082e0e81d
5 changed files with 8 additions and 6 deletions
5
.profile
5
.profile
|
|
@ -21,6 +21,10 @@ if [ -d "$HOME/bin" ] ; then
|
|||
PATH="$HOME/bin:$PATH"
|
||||
fi
|
||||
|
||||
if [ -d "$HOME/.cargo/bin" ] ; then
|
||||
PATH="$HOME/.cargo/bin:$PATH"
|
||||
fi
|
||||
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if [ -d "$HOME/.local/bin" ] ; then
|
||||
PATH="$HOME/.local/bin:$PATH"
|
||||
|
|
@ -37,7 +41,6 @@ export BORG_REPO="/media/backup/"
|
|||
export BORG_PASSCOMMAND="cat ${HOME}/.keys/borg-passphrase.txt"
|
||||
export PYTHON_KEYRING_BACKEND="keyring.backends.null.Keyring"
|
||||
export XDG_CURRENT_DESKTOP="sway"
|
||||
. "$HOME/.cargo/env"
|
||||
|
||||
# If running from tty1 start sway inside a zellij session
|
||||
[ "$(tty)" = "/dev/tty1" ] && exec zellij --layout sway --session sway
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue