more stuff

This commit is contained in:
2026-06-18 20:31:11 -05:00
parent 6de2694495
commit d0f844a453
9 changed files with 51 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
programs.starship = {
enable = true;
settings = {
add_newline = true;
command_timeout = 1300;
scan_timeout = 50;
format = "$all$nix_shell$nodejs$lua$golang$rust$php$git_branch$git_commit$git_state$git_status\n$username$hostname$directory";
character = {
success_symbol = "[](bold green) ";
error_symbol = "[](bold red) ";
};
};
};
}