aboutsummaryrefslogtreecommitdiff
path: root/users/programs/starship.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/programs/starship.nix')
-rw-r--r--users/programs/starship.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/users/programs/starship.nix b/users/programs/starship.nix
deleted file mode 100644
index 8a541ce..0000000
--- a/users/programs/starship.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ ... }:
-{
- programs.starship = {
- enable = true;
- settings = {
- add_newline = false;
- character = {
- success_symbol = "[›](bold green)";
- error_symbol = "[›](bold red)";
- };
- directory = {
- fish_style_pwd_dir_length = 3;
- };
- git_branch = {
- symbol = "🌱 ";
- };
- git_commit = {
- commit_hash_length = 4;
- };
- git_status = {
- deleted = "✗";
- modified = "✶";
- staged = "✓";
- stashed = "≡";
- };
- "$schema" = "https://starship.rs/config-schema.json";
- hostname = {
- ssh_only = true;
- };
- username = {
- disabled = true;
- };
- kubernetes = {
- disabled = false;
- style = "bold blue";
- };
- nix_shell.disabled = false;
- };
- };
-}