13 lines
189 B
Nix
13 lines
189 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
users.users.caem = {
|
|
isNormalUser = true;
|
|
shell = pkgs.zsh;
|
|
extraGroups = [
|
|
"wheel"
|
|
];
|
|
};
|
|
|
|
home-manager.users.caem = import ../../home/caem;
|
|
}
|