lol

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 {}'")

+1 -1
+1 -1
nixos/tests/virtualbox.nix
··· 519 519 destroy_vm_test1() 520 520 destroy_vm_test2() 521 521 ''; 522 - } // (lib.optionalAttrs enableUnfree unfreeTests) 522 + } // (optionalAttrs enableUnfree unfreeTests)