Is there a TUI "Settings" app for the terminal?

That would allow, for example, create a new sudo user as easily as in GNOME Settings without manually editing any sudo config file?

sudo useradd -g wheel username

or if user already exists and you want them to be able to use sudo command, you can use

sudo usermod -aG wheel username
4 Likes