1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{ perSystem = { pkgs, ... }: { apps.checks = { type = "app"; program = toString ( pkgs.writeShellScript "lint" '' set -e "${pkgs.nix-fast-build}/bin/nix-fast-build" --skip-cached --no-link "$@" '' ); meta.description = "run all the nix checks in parallel"; }; }; }