At the top of every script is the #!/bin/bash shebang. Unfortunately this does not run on NixOS and Guix because bash is not located in /bin. Other scripts get around this by using #!/usr/bin/env bash instead to run bash from where it is in the PATH.