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