Add a regression test for #14623

This commit is contained in:
Eelco Dolstra
2016-04-12 19:13:52 +02:00
parent 9153d8ed64
commit a42698d2a4
2 changed files with 13 additions and 2 deletions
+7 -2
View File
@@ -1,9 +1,14 @@
{ lib, ... }:
{ users.extraUsers = lib.singleton
{ users.extraUsers.alice =
{ isNormalUser = true;
name = "alice";
description = "Alice Foobar";
password = "foobar";
};
users.extraUsers.bob =
{ isNormalUser = true;
description = "Bob Foobar";
password = "foobar";
};
}