summaryrefslogtreecommitdiff
path: root/pre-commit.nix
blob: b70cebaab84437b7dfcf4e0e4e4896f566d249ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  perSystem = {config, ...}: {
    pre-commit.settings.hooks = {
      actionlint.enable = true;

      treefmt = {
        enable = true;
        package = config.treefmt.build.wrapper;
      };

      nil.enable = true;
      statix.enable = true;
    };
  };
}