about summary refs log tree commit diff
path: root/nixos/lib
diff options
context:
space:
mode:
authorJacek Galowicz <jacek@galowicz.de>2024-04-10 17:59:11 +0200
committerJacek Galowicz <jacek@galowicz.de>2024-04-10 17:59:11 +0200
commite4bf075cffda38c7ba857234325f3b4c4411ed53 (patch)
tree6c077984ef0bb0b15b90760f13e5baa192d5451a /nixos/lib
parentd477ca36fe91002fe92172a787f5de1eb5010a4a (diff)
NixOS Integration Tests: Enable again for darwin
Diffstat (limited to 'nixos/lib')
-rw-r--r--nixos/lib/testing/meta.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/lib/testing/meta.nix b/nixos/lib/testing/meta.nix
index 529fe714fcf6c..bdf313e5b119f 100644
--- a/nixos/lib/testing/meta.nix
+++ b/nixos/lib/testing/meta.nix
@@ -36,7 +36,7 @@ in
           };
           platforms = lib.mkOption {
             type = types.listOf types.raw;
-            default = lib.platforms.linux;
+            default = lib.platforms.linux ++ lib.platforms.darwin;
             description = ''
               Sets the [`meta.platforms`](https://nixos.org/manual/nixpkgs/stable/#var-meta-platforms) attribute on the [{option}`test`](#test-opt-test) derivation.
             '';