summaryrefslogtreecommitdiff
path: root/checks.nix
blob: 5ccc308fe5b52e3c581c5973d7aa672abe4d4fc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{inputs, ...}: {
  perSystem = {
    lib,
    pkgs,
    ...
  }: {
    checks = {
      inherit
        (inputs.flake-checks.lib.mkChecks {
          root = ../.;
          inherit pkgs;
        })
        actionlint
        alejandra
        deadnix
        editorconfig
        statix
        ;
    };
  };
}