A flake checker (treefmt & nix-unit) for testing other flakes with zero dependencies.

woo

+3 -1
+3 -1
default.nix
··· 20 20 name = "flake-check"; 21 21 text = '' 22 22 ( 23 - test -f checkmate/flake.nix && cd checkmate || true 23 + if test -f checkmate/flake.nix; then 24 + cd checkmate 25 + fi 24 26 nix flake update target 25 27 nix flake check 26 28 )