From 2d66a9db225d242a806db29e6fb619307f386902 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Wed, 23 Aug 2023 12:25:34 +0000 Subject: nixosTests.virtualbox: fix eval There's no "lib" in scope here. The test uses "with pkgs.lib;", so this failed to evaluate. Fixes: 6672dde558ea ("treewide: use optionalAttrs instead of 'else {}'") --- nixos/tests/virtualbox.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nixos') diff --git a/nixos/tests/virtualbox.nix b/nixos/tests/virtualbox.nix index 062b125eb611e..e522d0679e151 100644 --- a/nixos/tests/virtualbox.nix +++ b/nixos/tests/virtualbox.nix @@ -519,4 +519,4 @@ in mapAttrs (mkVBoxTest false vboxVMs) { destroy_vm_test1() destroy_vm_test2() ''; -} // (lib.optionalAttrs enableUnfree unfreeTests) +} // (optionalAttrs enableUnfree unfreeTests) -- cgit 1.4.1