13 lines
220 B
Nix
13 lines
220 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.michael = {
|
|
isNormalUser = true;
|
|
home = "/home/michael";
|
|
description = "Michael";
|
|
extraGroups = [ "wheel" "michael" ];
|
|
shell = pkgs.zsh;
|
|
uid = 1000;
|
|
};
|
|
}
|