30 lines
609 B
Nix
30 lines
609 B
Nix
{ config, pkgs, ... }:
|
||
|
||
{
|
||
imports = [ ./common.nix ];
|
||
programs.starship.settings = {
|
||
gcloud = {
|
||
disabled = false;
|
||
format = ''
|
||
on [$symbol$account(@$domain)(($region))]($style)
|
||
'';
|
||
symbol = "☁️ ";
|
||
};
|
||
python = {
|
||
disabled = true;
|
||
symbol = "";
|
||
format = ''
|
||
via [$symbol$pyenv_prefix($version )(($virtualenv) )]($style)
|
||
'';
|
||
python_binary = [
|
||
"python"
|
||
"python2"
|
||
"python3"
|
||
"/usr/bin/python"
|
||
"/usr/local/bin/python3"
|
||
];
|
||
};
|
||
};
|
||
programs.zsh.enableVteIntegration = false;
|
||
}
|