16 lines
393 B
Nix
16 lines
393 B
Nix
|
{ config, ... }:
|
|||
|
|
|||
|
{
|
|||
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|||
|
# users.users.jane = {
|
|||
|
# isNormalUser = true;
|
|||
|
# extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
|||
|
# };
|
|||
|
users.users.chris = {
|
|||
|
isNormalUser = true;
|
|||
|
home = "/home/chris";
|
|||
|
description = "Chris Josten";
|
|||
|
extraGroups = ["wheel" "networkmanager" "power"];
|
|||
|
};
|
|||
|
}
|