mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 15:34:13 +01:00
13 lines
431 B
Nix
13 lines
431 B
Nix
{ myvars, ... }:
|
||
{
|
||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||
users.users."${myvars.username}" = {
|
||
home = "/Users/${myvars.username}";
|
||
|
||
# set user's default shell back to zsh
|
||
# `chsh -s /bin/zsh`
|
||
# DO NOT change the system's default shell to nushell! it will break some apps!
|
||
# It's better to change only kitty/wezterm & other terminal emulator's shell to nushell!
|
||
};
|
||
}
|