lol

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

+4 -4
+4 -4
nixos/tests/please.nix
··· 6 6 nodes.machine = 7 7 { ... }: 8 8 { 9 - users.users = with lib; mkMerge [ 10 - (listToAttrs (map 11 - (n: nameValuePair n { isNormalUser = true; }) 12 - (genList (x: "user${toString x}") 6))) 9 + users.users = lib.mkMerge [ 10 + (lib.listToAttrs (map 11 + (n: lib.nameValuePair n { isNormalUser = true; }) 12 + (lib.genList (x: "user${toString x}") 6))) 13 13 { 14 14 user0.extraGroups = [ "wheel" ]; 15 15 }