Add thunderbolt support + update starship
This commit is contained in:
parent
bba81933e6
commit
71007d66a4
2 changed files with 10 additions and 7 deletions
|
|
@ -4,16 +4,17 @@
|
|||
enableBashIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
settings = {
|
||||
command_timeout = 1000;
|
||||
directory.truncation_symbol = "…/";
|
||||
hostname.format = "[$hostname]($style) ";
|
||||
line_break.disabled = true;
|
||||
nix_shell.symbol = "❄️ ";
|
||||
python.python_binary = "python3";
|
||||
hostname.format = "[$hostname]($style) "; # Disable ssh symbol
|
||||
# line_break.disabled = true; # Prompt in one line
|
||||
nix_shell.symbol = "❄️ "; # better soacing
|
||||
python.python_binary = [ "python3" "python2" ];
|
||||
status = {
|
||||
disabled = false;
|
||||
format = "[$symbol $status]($style) ";
|
||||
disabled = false; # enable module
|
||||
format = "[$symbol $status]($style) "; # nicer status format
|
||||
};
|
||||
username.format = "[$user]($style)@";
|
||||
username.format = "[$user]($style)@"; # compact username format
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,6 +48,8 @@ with lib; {
|
|||
];
|
||||
};
|
||||
|
||||
services.hardware.bolt.enable = true;
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "Europe/Rome";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue