From c3ea9587faf43217a5db1ca9bcb4ac8ed5a8e18b Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 19 Feb 2026 15:10:47 +0000 Subject: [PATCH] tests.cross: extend the existing `config` --- pkgs/test/cross/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/test/cross/default.nix b/pkgs/test/cross/default.nix index 35a16c146e67..e26f375ac5c9 100644 --- a/pkgs/test/cross/default.nix +++ b/pkgs/test/cross/default.nix @@ -1,4 +1,8 @@ -{ pkgs, lib }: +{ + pkgs, + config, + lib, +}: let @@ -78,6 +82,7 @@ let crossPkgs = import pkgs.path { localSystem = { inherit (pkgs.stdenv.hostPlatform) config; }; crossSystem = crossSystemFun system; + inherit config; }; emulator = crossPkgs.stdenv.hostPlatform.emulator pkgs;