diff --git a/checks/flake-module.nix b/checks/flake-module.nix index d205b1b..2068709 100644 --- a/checks/flake-module.nix +++ b/checks/flake-module.nix @@ -1,15 +1,11 @@ { self, ... }: { perSystem = { pkgs + , lib , ... }: { - 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; - }; + checks = lib.optionalAttrs pkgs.stdenv.isLinux { + test = import ./test.nix { inherit self pkgs; }; + }; }; }