source: dotfiles/guix/.bash_profile@ c39b1a4

Last change on this file since c39b1a4 was c39b1a4, checked in by Mikhail Kirillov <w96k.ru@…>, on Aug 30, 2019 at 1:47:39 AM

Add gnu stow categories

  • Property mode set to 100644
File size: 532 bytes
Line 
1# Add npm to PATH
2export PATH="~/.nodejs/bin/:$PATH"
3
4# Add .bin to PATH
5export PATH="~/.bin/:$PATH"
6
7# Add ruby gems to PATH
8export PATH=$PATH:/home/w96k/.gem/
9export PATH=$PATH:/home/w96k/.gem/ruby/2.5.0/bin/
10
11# Add nix to PATH
12export PATH=$PATH:/nix/var/nix/profiles/default/bin/
13
14# Add custom packages to guix PATH
15export GUIX_PACKAGE_PATH=~/.guix-packages
16
17# Proxy
18export http_proxy=http://127.0.0.1:9050/
19export https_proxy=$http_proxy
20
21setxkbmap -layout us,ru -option grp:caps_toggle
22
23if [ -f .bashrc ]
24then
25 . .bashrc
26fi
Note: See TracBrowser for help on using the repository browser.