nixos-wiki-infra/checks/flake-module.nix

12 lines
201 B
Nix
Raw Normal View History

2023-11-19 09:23:50 +01:00
{ self, ... }: {
perSystem =
{ pkgs
2023-11-19 09:23:50 +01:00
, lib
2023-11-19 09:23:50 +01:00
, ...
}: {
2023-11-19 09:23:50 +01:00
checks = lib.optionalAttrs pkgs.stdenv.isLinux {
test = import ./test.nix { inherit self pkgs; };
};
2023-11-19 09:23:50 +01:00
};
}