diff options
author | Ben Sima <ben@bsima.me> | 2020-11-27 15:49:51 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-11-27 15:50:05 -0800 |
commit | 98933de8327fe9adda203f2da74d9ad35c117bb7 (patch) | |
tree | ea157c0170b223cc3d6b5ebdd39370e1ef353a42 | |
parent | 330845b0f7cfc2a1b3ba051964242984a3e5568e (diff) |
fix symlink detection
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ NIXFILE="$(pwd)/$1" # override with a symlink. # mkdir -p ~/.config/notmuch -[[ ! -e ~/.notmuch-config ]] || ln -s ~/.config/notmuch/notmuchrc ~/.notmuch-config +[[ -e ~/.notmuch-config ]] || ln -s ~/.config/notmuch/notmuchrc ~/.notmuch-config # # symlinking must occur before initial generation. now we can install, and # pin our own nixpkgs. |