diff options
author | Ben Sima <ben@bsima.me> | 2018-07-02 15:33:54 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2018-07-05 14:57:02 -0700 |
commit | fe499b717657fabf595f6e30d641e01ca38349ed (patch) | |
tree | 65411005264d429c5365d835a00096155bb35246 | |
parent | f41646f7ec4bf28e2bcbe19bb9b92637055cbc9d (diff) |
Ensure ~/bin is the first thing on PATH
-rw-r--r-- | home.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ in sessionVariables = { EDITOR = "vim"; LANG = "en_US.UTF-8"; - PATH = "~/.cabal/bin:~/.local/bin:$PATH"; + PATH = "~/bin:~/.cabal/bin:~/.local/bin:$PATH"; }; file = { mutt = { |