profiles/shells/nushell: add nushell

This commit is contained in:
Infinidoge 2021-11-11 11:54:50 -05:00
parent 74b4cc13f0
commit 6dfd9c639e
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ ... }: {
programs.nushell = {
enable = true;
settings = {
complete_from_path = true;
ctrlc_exit = true;
startup = [
"mkdir ~/.cache/starship"
"starship init nu | save ~/.cache/starship/init.nu"
"source ~/.cache/starship/init.nu"
];
prompt = "starship_prompt";
};
};
}