1
1
forked from extern/flakelight

Add statix check to flakelight flake

This commit is contained in:
Archit Gupta 2023-09-04 16:59:59 -07:00
parent 3f595f5f2c
commit b72983b29a
2 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,7 @@ in
config.withOverlays = mkOrder 10 (final: prev:
let
system = prev.stdenv.hostPlatform.system;
inherit (prev.stdenv.hostPlatform) system;
in
{
inherit src inputs outputs flakelight system;

View File

@ -9,5 +9,6 @@
flakelight ./. {
outputs = flakelight;
templates = import ./templates;
checks.statix = pkgs: "${pkgs.statix}/bin/statix check";
};
}