infra/flake/den/checkmate.nix

14 lines
340 B
Nix
Raw Permalink Normal View History

2025-12-01 13:23:24 +07:00
{ lib, ... }:
{
imports =
let
files = builtins.readDir ./checkmate/tests;
names = builtins.attrNames files;
nixes = builtins.filter (lib.hasSuffix ".nix") names;
tests = map (file: "${./checkmate/tests}/${file}") nixes;
in
tests;
perSystem.treefmt.settings.global.excludes = [ ".github/*/*.md" ];
}