2015-05-13 07:23:57 -07:00
|
|
|
{ lib, ... }:
|
2011-03-17 07:04:47 -07:00
|
|
|
|
2018-06-29 16:55:42 -07:00
|
|
|
{ users.users.alice =
|
2014-08-14 17:07:43 -07:00
|
|
|
{ isNormalUser = true;
|
2011-03-17 07:04:47 -07:00
|
|
|
description = "Alice Foobar";
|
|
|
|
password = "foobar";
|
|
|
|
};
|
2016-04-12 10:12:28 -07:00
|
|
|
|
2018-06-29 16:55:42 -07:00
|
|
|
users.users.bob =
|
2016-04-12 10:12:28 -07:00
|
|
|
{ isNormalUser = true;
|
|
|
|
description = "Bob Foobar";
|
|
|
|
password = "foobar";
|
|
|
|
};
|
2011-03-17 07:04:47 -07:00
|
|
|
}
|