20 lines
355 B
Nix
20 lines
355 B
Nix
{
|
|
perSystem = {
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
pre-commit.settings = {
|
|
rootSrc = lib.mkForce ../../.;
|
|
hooks = {
|
|
actionlint.enable = true;
|
|
nil.enable = true;
|
|
statix.enable = true;
|
|
treefmt = {
|
|
enable = true;
|
|
package = config.treefmt.build.wrapper;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|