Add thunderbolt support + update starship

This commit is contained in:
Filippo Berto 2022-11-17 17:58:40 +01:00
parent bba81933e6
commit 71007d66a4
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
2 changed files with 10 additions and 7 deletions

View file

@ -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
};
};
}

View file

@ -48,6 +48,8 @@ with lib; {
];
};
services.hardware.bolt.enable = true;
# Set your time zone.
time.timeZone = "Europe/Rome";