10 lines
257 B
Nix
10 lines
257 B
Nix
{ config, lib, pkgs, ... }:
|
||
|
||
{
|
||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||
users.users.shaquille = {
|
||
isNormalUser = true;
|
||
description = "Shaquille Soekhlal";
|
||
extraGroups = [ "networkmanager" "wheel" ];
|
||
};
|
||
} |