2011-03-17 07:04:47 -07:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{ users.extraUsers = pkgs.lib.singleton
|
|
|
|
{ name = "alice";
|
|
|
|
description = "Alice Foobar";
|
|
|
|
home = "/home/alice";
|
|
|
|
createHome = true;
|
|
|
|
useDefaultShell = true;
|
|
|
|
password = "foobar";
|
2014-02-08 12:09:48 -08:00
|
|
|
uid = 1000;
|
2011-03-17 07:04:47 -07:00
|
|
|
};
|
|
|
|
}
|