mirror of
https://github.com/Mic92/nixos-wiki-infra.git
synced 2024-11-22 16:24:02 +01:00
16 lines
298 B
Nix
16 lines
298 B
Nix
|
{ self, ... }: {
|
||
|
perSystem =
|
||
|
{ pkgs
|
||
|
, ...
|
||
|
}: {
|
||
|
checks =
|
||
|
let
|
||
|
# this gives us a reference to our flake but also all flake inputs
|
||
|
checkArgs = { inherit self pkgs; };
|
||
|
in
|
||
|
{
|
||
|
test = import ./test.nix checkArgs;
|
||
|
};
|
||
|
};
|
||
|
}
|