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