2022-01-18 09:32:55 +01:00
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [ ./common.nix ];
|
2022-01-18 10:33:23 +01:00
|
|
|
|
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"
|
|
|
|
|
];
|
2022-01-18 09:32:55 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
2022-01-18 10:33:23 +01:00
|
|
|
|
programs.zsh.enableVteIntegration = false;
|
2022-01-18 09:32:55 +01:00
|
|
|
|
}
|