universe/users/profiles/shells/nushell.nix

10 lines
192 B
Nix

{ ... }: {
programs.nushell = {
enable = true;
settings = {
complete_from_path = true;
ctrlc_exit = true;
prompt = "STARSHIP_SHELL= starship prompt";
};
};
}