blob: 3570574013d75a5272461931ad7c48234e3742cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
inputs,
pkgs,
system,
...
}:
{
preCommit = inputs.git-hooks.lib.${system}.run {
src = builtins.path {
name = "nixfiles";
path = ./.;
};
hooks = {
nixfmt = {
enable = true;
package = pkgs.nixfmt;
};
promtool = {
enable = true;
name = "promtool";
description = "Check Prometheus rules";
entry = "${pkgs.prometheus.cli}/bin/promtool check rules";
files = "(?x)^(modules/monitoring/rules/.*\.yaml)$";
};
deadnix.enable = true;
editorconfig-checker.enable = true;
prettier.enable = true;
shellcheck.enable = true;
shfmt.enable = true;
statix.enable = true;
yamllint.enable = true;
};
};
}
|