From e2ea8152cc6f26f67484c80e533e9d980beab78c Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 8 Nov 2019 13:45:57 -0500 Subject: [PATCH] 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. --- nixos/tests/common/user-account.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/tests/common/user-account.nix b/nixos/tests/common/user-account.nix index 9cd531a1f96c..a57ee2d59ae3 100644 --- a/nixos/tests/common/user-account.nix +++ b/nixos/tests/common/user-account.nix @@ -4,6 +4,7 @@ { isNormalUser = true; description = "Alice Foobar"; password = "foobar"; + uid = 1000; }; users.users.bob =