10 lines
163 B
Nix
10 lines
163 B
Nix
|
{pkgs, ...}:
|
|||
|
|
|||
|
{
|
|||
|
users.users.oysteikt = {
|
|||
|
isNormalUser = true;
|
|||
|
#extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
|||
|
shell = pkgs.zsh;
|
|||
|
};
|
|||
|
}
|