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:
Menno van Leeuwen 2025-04-29 11:24:31 +02:00
parent 1f1c069da9
commit 5465b13ef9
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE
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

View File

@ -16,8 +16,6 @@ in
mission-center # Task Manager like Windows 11
gnome-tweaks
pinta # Paint.NET alternative
bottles # Wine manager
spacedrive # Virtual filesystem manager
smile # Emoji picker
gnome-boxes # Virtual machine manager
deja-dup # Backup tool
@ -49,7 +47,6 @@ in
openra
xonotic
mindustry
wesnoth
shattered-pixel-dungeon
### Games launchers

View File

@ -1,6 +1,6 @@
{
"security.workspace.trust.untrustedFiles": "open",
"window.zoomLevel": 1.2,
"window.zoomLevel": 0.8,
"editor.fontFamily": "Hack Nerd Font",
"terminal.integrated.fontFamily": "Hack Nerd Font",
"github.copilot.enable": {