feat: update .bashrc for GPU configuration and add Miniconda to PATH; remove unused packages from Nix configuration
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 27s
Nix Format Check / check-format (push) Successful in 1m24s
Python Lint Check / check-python (push) Failing after 19s

This commit is contained in:
2025-04-29 11:24:31 +02:00
parent 1f1c069da9
commit 5465b13ef9
3 changed files with 10 additions and 4 deletions

View File

@ -3,6 +3,12 @@ HISTFILE=~/.bash_history
HISTSIZE=1000
HISTFILESIZE=2000 # Adjusted to match both histfile and size criteria
# GPU Related shenanigans
if [ "$(hostname)" = "mennos-desktop" ]; then
export DRI_PRIME=1
export MESA_VK_DEVICE_SELECT=1002:744c
fi
# Docker Compose Alias (Mostly for old shell scripts)
alias docker-compose='docker compose'
@ -76,6 +82,9 @@ if [ -d "$HOME/.local/share/pnpm" ]; then
export PATH=$PATH:$HOME/.local/share/pnpm
fi
# Miniconda
export PATH="$HOME/miniconda3/bin:$PATH"
# In case $HOME/.flutter/flutter/bin is found, we can add it to the PATH
if [ -d "$HOME/.flutter/flutter/bin" ]; then
export PATH=$PATH:$HOME/.flutter/flutter/bin