Enable starship

This commit is contained in:
Andreas Zweili 2022-04-17 21:16:09 +02:00
parent 3cacd9ba10
commit 7025c64be3
2 changed files with 22 additions and 0 deletions

View File

@ -19,6 +19,7 @@
./software/pycharm
./software/rapid-photo-downloader
./software/signal
./software/starship
./software/telegram
./software/vim
./software/work-desktop

View File

@ -0,0 +1,21 @@
{ lib, ... }:
{
programs.starship = {
settings = {
add_newline = false;
format = lib.concatStrings [
"$username"
"$hostname"
"$directory"
"$nix_shell"
"$git_branch"
"$git_status"
"$character"
];
nix_shell = {
format = "$symbol";
};
};
enable = true;
};
}