diff --git a/checks/flake-module.nix b/checks/flake-module.nix index 16b52813..3fd509a4 100644 --- a/checks/flake-module.nix +++ b/checks/flake-module.nix @@ -11,7 +11,7 @@ # this gives us a reference to our flake but also all flake inputs inherit self; }; - nixosTests = { + nixosTests = lib.optionalAttrs (pkgs.stdenv.isLinux) { # import our test secrets = import ./secrets nixosTestArgs; }; diff --git a/flake.nix b/flake.nix index 43c85fa9..f03dd150 100644 --- a/flake.nix +++ b/flake.nix @@ -25,6 +25,7 @@ systems = [ "x86_64-linux" "aarch64-linux" + "aarch64-darwin" ]; imports = [ ./checks/flake-module.nix