10 lines
167 B
Nix
10 lines
167 B
Nix
{ git-hooks, ... }:
|
|
{ pkgs, ... }:
|
|
{
|
|
git-hooks = git-hooks.lib.${pkgs.system}.run {
|
|
src = ./.;
|
|
hooks = {
|
|
nixfmt-rfc-style.enable = true;
|
|
};
|
|
};
|
|
}
|