12 lines
136 B
Nix
12 lines
136 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
users.users.caem = {
|
||
|
isNormalUser = true;
|
||
|
shell = pkgs.zsh;
|
||
|
extraGroups = [
|
||
|
"wheel"
|
||
|
];
|
||
|
};
|
||
|
}
|