16 lines
258 B
Nix
16 lines
258 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.git-hooks-nix.flakeModule
|
|
|
|
./phpcs.nix
|
|
./phpstan.nix
|
|
];
|
|
|
|
perSystem =
|
|
{ config, ... }:
|
|
{
|
|
devshells.default.devshell.startup.git-hooks.text = config.pre-commit.installationScript;
|
|
};
|
|
}
|