Skip to content

Instantly share code, notes, and snippets.

@ixxie
Last active June 9, 2018 21:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ixxie/fd5d91fe9ac924a34ffa58ca6950447d to your computer and use it in GitHub Desktop.
Save ixxie/fd5d91fe9ac924a34ffa58ca6950447d to your computer and use it in GitHub Desktop.
# Define user accounts
users.extraUsers =
{
bob =
{
home = "/home/bob";
extraGroups = [ "wheel" "networkmanager" ];
isNormalUser = true;
uid = 1000;
};
alice =
{
home = "/home/alice";
extraGroups = [ "wheel" "networkmanager" ];
isNormalUser = true;
uid = 1001;
};
eve =
{
home = "/home/eve";
extraGroups = [ ];
isNormalUser = true;
uid = 1002;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment