flake: move 'checks' to 'flake/'
This commit is contained in:
parent
90d1d81983
commit
fc02519c4f
3
.envrc
3
.envrc
|
@ -3,4 +3,7 @@ if ! has nix_direnv_version || ! nix_direnv_version 2.2.1; then
|
|||
fi
|
||||
|
||||
use flake
|
||||
|
||||
watch_file ./flake/checks.nix
|
||||
|
||||
eval "$shellHooks"
|
||||
|
|
16
flake.nix
16
flake.nix
|
@ -120,21 +120,7 @@
|
|||
default = apps.diff-flake;
|
||||
};
|
||||
|
||||
checks = {
|
||||
pre-commit = pre-commit-hooks.lib.${system}.run {
|
||||
src = ./.;
|
||||
|
||||
hooks = {
|
||||
nixpkgs-fmt = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
shellcheck = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
checks = import ./flake/checks.nix inputs system;
|
||||
|
||||
devShells = {
|
||||
default = pkgs.mkShell {
|
||||
|
|
17
flake/checks.nix
Normal file
17
flake/checks.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ self, pre-commit-hooks, ... }:
|
||||
system:
|
||||
{
|
||||
pre-commit = pre-commit-hooks.lib.${system}.run {
|
||||
src = self;
|
||||
|
||||
hooks = {
|
||||
nixpkgs-fmt = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
shellcheck = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue