mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:43:55 -05:00
11 lines
250 B
Nix
11 lines
250 B
Nix
|
{ config, pkgs, ... }:
|
|||
|
|
|||
|
{
|
|||
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|||
|
users.users.aly = {
|
|||
|
isNormalUser = true;
|
|||
|
description = "Dustin Raffauf";
|
|||
|
extraGroups = [ "networkmanager" "wheel" "docker" ];
|
|||
|
};
|
|||
|
}
|