diff options
Diffstat (limited to 'checks.nix')
| -rw-r--r-- | checks.nix | 43 |
1 files changed, 21 insertions, 22 deletions
@@ -1,24 +1,23 @@ -{inputs, ...}: { - perSystem = { - lib, - pkgs, - ... - }: { - checks = { - inherit - (inputs.flake-checks.lib.mkChecks { - inherit pkgs; - root = lib.fileset.toSource { - root = ./.; - fileset = lib.fileset.gitTracked ./.; - }; - }) - actionlint - alejandra - deadnix - editorconfig - statix - ; +{ inputs, ... }: +{ + perSystem = + { lib, pkgs, ... }: + { + checks = { + inherit + (inputs.flake-checks.lib.mkChecks { + inherit pkgs; + root = lib.fileset.toSource { + root = ./.; + fileset = lib.fileset.gitTracked ./.; + }; + }) + actionlint + alejandra + deadnix + editorconfig + statix + ; + }; }; - }; } |
