diff --git a/configs/starship.toml b/configs/starship/starship.toml similarity index 57% rename from configs/starship.toml rename to configs/starship/starship.toml index 50df12f..3ca2587 100644 --- a/configs/starship.toml +++ b/configs/starship/starship.toml @@ -1,8 +1,9 @@ "$schema" = 'https://starship.rs/config-schema.json' -format = '${custom.tztime}$all$directory$character' - -add_newline = true # Inserts a blank line between shell prompts +#format = '${custom.tztime}$all$directory$character' +format = '$directory$character' +right_format = '$all' +add_newline = true # Inserts a blank line between shell prompts [character] success_symbol = '[➜](bold green)' diff --git a/modules/console.nix b/modules/console.nix index 03ceea6..26f2c22 100644 --- a/modules/console.nix +++ b/modules/console.nix @@ -17,7 +17,7 @@ ''; }; programs = { - mosh.enable = true; +# mosh.enable = true; # neovim = { # enable = true; # viAlias = true; @@ -26,7 +26,7 @@ ssh.startAgent = true; starship = { enable = true; - settings = with builtins; fromTOML (readFile ../configs/starship.toml); + settings = with builtins; fromTOML (readFile ../configs/starship/starship.toml); }; zsh = { enable = true;