nix/packages/checks/default.nix

11 lines
167 B
Nix
Raw Normal View History

{ git-hooks, ... }:
{ pkgs, ... }:
2025-02-14 13:04:04 -06:00
{
git-hooks = git-hooks.lib.${pkgs.system}.run {
src = ./.;
hooks = {
nixfmt-rfc-style.enable = true;
2025-02-14 13:04:04 -06:00
};
};
}