diff options
Diffstat (limited to 'users/seth/programs/starship.nix')
| -rw-r--r-- | users/seth/programs/starship.nix | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/users/seth/programs/starship.nix b/users/seth/programs/starship.nix new file mode 100644 index 0000000..03af3a7 --- /dev/null +++ b/users/seth/programs/starship.nix @@ -0,0 +1,31 @@ +{ config, ...}: + +{ + programs.starship = { + enable = false; + settings = { + format = """ + $username\ + $hostname\ + $directory\ + $vcsh\ + $git_branch\ + $git_commit\ + $git_state\ + $git_metrics\ + $git_status\ + $docker_context\ + $nix_shell\ + $env_var\ + $sudo\ + $cmd_duration\ + $line_break\ + $jobs\ + $status\ + $container\ + $shell\ + $character + """; + }; + }; +} |
