NixOS-Configuration/users.nix

10 lines
244 B
Nix
Raw Normal View History

2023-06-30 22:46:44 +00:00
{ config, ... }:
2023-06-30 22:38:56 +00:00
{
# Define a user account. Don't forget to set a password with passwd.
users.users.shaquille = {
isNormalUser = true;
description = "Shaquille Soekhlal";
extraGroups = [ "networkmanager" "wheel" ];
};
2023-06-30 22:53:47 +00:00
}