#! /usr/bin/env sh # nixos-config - My current NixOS configuration # # Copyright (C) 2025 Benedikt Peetz # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of my nixos-config. # # You should have received a copy of the License along with this program. # If not, see . cd "$(dirname "$0")" || exit 2 cargo build execute_make_maps() { ../target/debug/lf-make-map "$@" } fd . cases --max-depth 1 --type directory | while read -r case; do echo "Executing '$case/test.sh'" # shellcheck source=/dev/null LOCATION="$case/test.sh" . "$case/test.sh" done