MyNixOS website logo

Additional user accounts to be created automatically by the system. This can also be used to set options for root.

Declarations
Type
attribute set of (submodule)
Default
{ }
Example
{
  alice = {
    createHome = true;
    description = "Alice Q. User";
    extraGroups = [
      "wheel"
    ];
    group = "users";
    home = "/home/alice";
    shell = "/bin/sh";
    uid = 1234;
  };
}