From 112a71eef74033702e3dc4fd8afc501c2c40a700 Mon Sep 17 00:00:00 2001 From: Jacob Moody Date: Mon, 25 Dec 2023 18:09:26 -0600 Subject: [PATCH] nixos/tests: remove builtints.currentSystem from make-test-python.nix When build using 'nix build' if we hit this default we will fail to evaluate. Most instances that this should break have been fixed so we remove this to prevent this from happening further in the future. --- 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 28569f1d2955..32531fffd2bf 100644 --- a/nixos/tests/make-test-python.nix +++ b/nixos/tests/make-test-python.nix @@ -1,5 +1,5 @@ f: { - system ? builtins.currentSystem, + system, pkgs ? import ../.. { inherit system; config = {}; overlays = []; }, ... } @ args: