summaryrefslogtreecommitdiff
path: root/parts/checks.nix
blob: bbe2ad375b3f65d962869de5858b32862882dfaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pre-commit-hooks, system, ... }:
{
  checks.pre-commit-check = pre-commit-hooks.lib.${system}.run {
    src = ./.;

    hooks = {
      deadnix.enable = true;
      flake-checker.enable = true;
      nixfmt-rfc-style.enable = true;
      statix.enable = false;
    };
  };
}