diff options
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,9 +14,9 @@ else NIXFILE="$(pwd)/$1" # # start from scratch - rm "$HOMEFILE" + rm "$HOMEFILE" || true ln -s "$NIXFILE" "$HOMEFILE" - rm "$NIXDIR/config.nix" + rm "$NIXDIR/config.nix" || true ln -s "$(pwd)/lib/config.nix" "$NIXDIR/config.nix" # # the notmuch config location is by default ~/.notmuch-config, but home-manager |