NixOS-Configuration/users.nix
2023-07-01 00:53:47 +02:00

10 lines
244 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ config, ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.shaquille = {
isNormalUser = true;
description = "Shaquille Soekhlal";
extraGroups = [ "networkmanager" "wheel" ];
};
}