Remove fixed uid in tests

Changed files
+2 -3
nixos
tests
+2 -3
nixos/tests/common/user-account.nix
···
-
{ pkgs, ... }:
+
{ lib, ... }:
-
{ users.extraUsers = pkgs.lib.singleton
+
{ users.extraUsers = lib.singleton
{ isNormalUser = true;
name = "alice";
description = "Alice Foobar";
password = "foobar";
-
uid = 1000;
};
}