16 lines
273 B
Nix
16 lines
273 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
users.users.chris = {
|
|
uid = 1000;
|
|
isNormalUser = true;
|
|
initialPassword = "changeme123";
|
|
shell = pkgs.zsh;
|
|
extraGroups = [
|
|
"chris"
|
|
"wheel"
|
|
"networkmanager"
|
|
];
|
|
};
|
|
}
|