nixos/tests/please.nix: get rid of `with lib`

Changed files
+4 -4
nixos
tests
+4 -4
nixos/tests/please.nix
···
nodes.machine =
{ ... }:
{
-
users.users = with lib; mkMerge [
-
(listToAttrs (map
-
(n: nameValuePair n { isNormalUser = true; })
-
(genList (x: "user${toString x}") 6)))
+
users.users = lib.mkMerge [
+
(lib.listToAttrs (map
+
(n: lib.nameValuePair n { isNormalUser = true; })
+
(lib.genList (x: "user${toString x}") 6)))
{
user0.extraGroups = [ "wheel" ];
}