2015-05-13 15:23:57 +01:00
|
|
|
{ lib, ... }:
|
2011-03-17 14:04:47 +00:00
|
|
|
|
2016-04-12 18:12:28 +01:00
|
|
|
{ users.extraUsers.alice =
|
2014-08-15 01:07:43 +01:00
|
|
|
{ isNormalUser = true;
|
2011-03-17 14:04:47 +00:00
|
|
|
description = "Alice Foobar";
|
|
|
|
password = "foobar";
|
|
|
|
};
|
2016-04-12 18:12:28 +01:00
|
|
|
|
|
|
|
users.extraUsers.bob =
|
|
|
|
{ isNormalUser = true;
|
|
|
|
description = "Bob Foobar";
|
|
|
|
password = "foobar";
|
|
|
|
};
|
2011-03-17 14:04:47 +00:00
|
|
|
}
|