home-config/bash_profile
6eb6fb8984eb2c898a4c77beddc134c17f3d37fc
· 366 B · 13 lines
raw
| 1 | export MOZ_ENABLE_WAYLAND=1 |
| 2 | |
| 3 | export XDG_DATA_DIRS=$XDG_DATA_DIRS:~/.nix-profile/share |
| 4 | export PATH=~/.local/bin:$PATH:~/.nix-profile/bin:~/.go/bin |
| 5 | export GOPATH=~/.go |
| 6 | |
| 7 | # Honor per-interactive-shell startup file |
| 8 | if [ -f ~/.bashrc ]; then . ~/.bashrc; fi |
| 9 | |
| 10 | if [ -z "$SSH_CLIENT" ] && [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then |
| 11 | exec nixGLIntel Hyprland |
| 12 | fi |
| 13 |