tidalcycles / vim-tidal

Vim plugin for TidalCycles
MIT License
222 stars 56 forks source link

Change bin paths for NixOS compatibility #60

Closed jakeisnt closed 3 years ago

jakeisnt commented 3 years ago

On NixOS, shells like sh and bash aren't found in /bin; rather, they're stored elsewhere and found in the system environment. Because of this, #!/bin/bash will fail to find the bash shell on NixOS systems.

On the contrary, #!/usr/bin/env sh is compatible with all Linux systems.

munshkr commented 3 years ago

Thanks!