From 47813a3214efbfac32fc09e491e32d95d1b9cb32 Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Sat, 26 Nov 2022 11:52:51 +0100 Subject: [PATCH] nixos/tests: Make pure Just had @fabianhauser at the #ZurichZHF hackathon run into this, causing the tests to fail evaluation due to some system impurity --- nixos/tests/make-test-python.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/make-test-python.nix b/nixos/tests/make-test-python.nix index 7a96f538d8d7..28569f1d2955 100644 --- a/nixos/tests/make-test-python.nix +++ b/nixos/tests/make-test-python.nix @@ -1,6 +1,6 @@ f: { system ? builtins.currentSystem, - pkgs ? import ../.. { inherit system; }, + pkgs ? import ../.. { inherit system; config = {}; overlays = []; }, ... } @ args: