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;
|
enableBashIntegration = true;
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
command_timeout = 1000;
|
||||||
directory.truncation_symbol = "…/";
|
directory.truncation_symbol = "…/";
|
||||||
hostname.format = "[$hostname]($style) ";
|
hostname.format = "[$hostname]($style) "; # Disable ssh symbol
|
||||||
line_break.disabled = true;
|
# line_break.disabled = true; # Prompt in one line
|
||||||
nix_shell.symbol = "❄️ ";
|
nix_shell.symbol = "❄️ "; # better soacing
|
||||||
python.python_binary = "python3";
|
python.python_binary = [ "python3" "python2" ];
|
||||||
status = {
|
status = {
|
||||||
disabled = false;
|
disabled = false; # enable module
|
||||||
format = "[$symbol $status]($style) ";
|
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.
|
# Set your time zone.
|
||||||
time.timeZone = "Europe/Rome";
|
time.timeZone = "Europe/Rome";
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue