nixos/tests/user-account: add static uid for alice

A lot of tests assume that the alice user
will have a uid of 1000. Let's make that
a guarantee and be able to reference this value.
This commit is contained in:
worldofpeace 2019-11-08 13:45:57 -05:00
parent 313eba4451
commit e2ea8152cc

View file

@ -4,6 +4,7 @@
{ isNormalUser = true;
description = "Alice Foobar";
password = "foobar";
uid = 1000;
};
users.users.bob =