14 lines
182 B
Nix
14 lines
182 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.chris = {
|
|
isNormalUser = true;
|
|
shell = pkgs.zsh;
|
|
extraGroups = [
|
|
"chris"
|
|
"wheel"
|
|
"networkmanager"
|
|
];
|
|
};
|
|
}
|