2011-03-17 14:04:47 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{ users.extraUsers = pkgs.lib.singleton
|
2014-08-15 01:07:43 +01:00
|
|
|
{ isNormalUser = true;
|
|
|
|
name = "alice";
|
2011-03-17 14:04:47 +00:00
|
|
|
description = "Alice Foobar";
|
|
|
|
password = "foobar";
|
2014-02-08 20:09:48 +00:00
|
|
|
uid = 1000;
|
2011-03-17 14:04:47 +00:00
|
|
|
};
|
|
|
|
}
|