mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
204 lines
5.7 KiB
Nix
204 lines
5.7 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib)
|
|
mkIf
|
|
mkOption
|
|
optionalString
|
|
types
|
|
;
|
|
|
|
cfg = config.programs.powerline-go;
|
|
|
|
# Convert an option value to a string to be passed as argument to
|
|
# `powerline-go`:
|
|
valueToString =
|
|
value:
|
|
if builtins.isList value then
|
|
builtins.concatStringsSep "," (builtins.map valueToString value)
|
|
else if builtins.isAttrs value then
|
|
valueToString (lib.mapAttrsToList (key: val: "${valueToString key}=${valueToString val}") value)
|
|
else
|
|
builtins.toString value;
|
|
|
|
modulesArgument = optionalString (cfg.modules != null) " -modules ${valueToString cfg.modules}";
|
|
|
|
modulesRightArgument = optionalString (
|
|
cfg.modulesRight != null
|
|
) " -modules-right ${valueToString cfg.modulesRight}";
|
|
|
|
evalMode = cfg.modulesRight != null;
|
|
|
|
evalArgument = optionalString evalMode " -eval";
|
|
|
|
newlineArgument = optionalString cfg.newline " -newline";
|
|
|
|
pathAliasesArgument = optionalString (
|
|
cfg.pathAliases != null
|
|
) " -path-aliases ${valueToString cfg.pathAliases}";
|
|
|
|
otherSettingPairArgument =
|
|
name: value: if value == true then " -${name}" else " -${name} ${valueToString value}";
|
|
|
|
otherSettingsArgument = optionalString (cfg.settings != { }) (
|
|
lib.concatStringsSep "" (lib.mapAttrsToList otherSettingPairArgument cfg.settings)
|
|
);
|
|
|
|
commandLineArguments = ''
|
|
${evalArgument}${modulesArgument}${modulesRightArgument}${newlineArgument}${pathAliasesArgument}${otherSettingsArgument}
|
|
'';
|
|
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.DamienCassou ];
|
|
|
|
options = {
|
|
programs.powerline-go = {
|
|
enable = lib.mkEnableOption "Powerline-go, a beautiful and useful low-latency prompt for your shell";
|
|
|
|
package = lib.mkPackageOption pkgs "powerline-go" { };
|
|
|
|
modules = mkOption {
|
|
default = null;
|
|
type = types.nullOr (types.listOf types.str);
|
|
description = ''
|
|
List of module names to load. The list of all available
|
|
modules as well as the choice of default ones are at
|
|
<https://github.com/justjanne/powerline-go>.
|
|
'';
|
|
example = [
|
|
"host"
|
|
"ssh"
|
|
"cwd"
|
|
"gitlite"
|
|
"jobs"
|
|
"exit"
|
|
];
|
|
};
|
|
|
|
modulesRight = mkOption {
|
|
default = null;
|
|
type = types.nullOr (types.listOf types.str);
|
|
description = ''
|
|
List of module names to load to be displayed on the right side.
|
|
Currently not supported by bash. Specifying a value for this
|
|
option will force powerline-go to use the eval format to set
|
|
the prompt.
|
|
'';
|
|
example = [
|
|
"host"
|
|
"venv"
|
|
"git"
|
|
];
|
|
};
|
|
|
|
newline = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = ''
|
|
Set to true if the prompt should be on a line of its own.
|
|
'';
|
|
example = true;
|
|
};
|
|
|
|
pathAliases = mkOption {
|
|
default = null;
|
|
type = types.nullOr (types.attrsOf types.str);
|
|
description = ''
|
|
Pairs of full-path and corresponding desired short name. You
|
|
may use '~' to represent your home directory but you should
|
|
protect it to avoid shell substitution.
|
|
'';
|
|
example = lib.literalExpression ''
|
|
{ "\\~/projects/home-manager" = "prj:home-manager"; }
|
|
'';
|
|
};
|
|
|
|
settings = mkOption {
|
|
default = { };
|
|
type =
|
|
with types;
|
|
attrsOf (oneOf [
|
|
bool
|
|
int
|
|
str
|
|
(listOf str)
|
|
]);
|
|
description = ''
|
|
This can be any key/value pair as described in
|
|
<https://github.com/justjanne/powerline-go>.
|
|
'';
|
|
example = lib.literalExpression ''
|
|
{
|
|
hostname-only-if-ssh = true;
|
|
numeric-exit-codes = true;
|
|
cwd-max-depth = 7;
|
|
ignore-repos = [ "/home/me/big-project" "/home/me/huge-project" ];
|
|
}
|
|
'';
|
|
};
|
|
|
|
extraUpdatePS1 = mkOption {
|
|
default = "";
|
|
description = "Shell code to execute after the prompt is set.";
|
|
example = ''
|
|
PS1=$PS1"NixOS> ";
|
|
'';
|
|
type = types.str;
|
|
};
|
|
};
|
|
};
|
|
|
|
config = {
|
|
programs.bash.initExtra = mkIf (cfg.enable && config.programs.bash.enable) ''
|
|
function _update_ps1() {
|
|
local old_exit_status=$?
|
|
${
|
|
if evalMode then "eval " else "PS1="
|
|
}"$(${lib.getExe cfg.package} -error $old_exit_status -shell bash${commandLineArguments})"
|
|
${cfg.extraUpdatePS1}
|
|
return $old_exit_status
|
|
}
|
|
|
|
if [ "$TERM" != "linux" ]; then
|
|
if [[ ";''${PROMPT_COMMAND:-};" != *";_update_ps1;"* ]]; then
|
|
PROMPT_COMMAND="_update_ps1''${PROMPT_COMMAND:+;$PROMPT_COMMAND}"
|
|
fi
|
|
fi
|
|
'';
|
|
|
|
programs.zsh.initContent = mkIf (cfg.enable && config.programs.zsh.enable) ''
|
|
function powerline_precmd() {
|
|
${
|
|
if evalMode then "eval " else "PS1="
|
|
}"$(${lib.getExe cfg.package} -error $? -shell zsh${commandLineArguments})"
|
|
${cfg.extraUpdatePS1}
|
|
}
|
|
|
|
function install_powerline_precmd() {
|
|
for s in "$\{precmd_functions[@]}"; do
|
|
if [ "$s" = "powerline_precmd" ]; then
|
|
return
|
|
fi
|
|
done
|
|
precmd_functions+=(powerline_precmd)
|
|
}
|
|
|
|
if [ "$TERM" != "linux" ]; then
|
|
install_powerline_precmd
|
|
fi
|
|
'';
|
|
|
|
# https://github.com/justjanne/powerline-go#fish
|
|
programs.fish.interactiveShellInit = mkIf (cfg.enable && config.programs.fish.enable) ''
|
|
function fish_prompt
|
|
eval ${lib.getExe cfg.package} -error $status -jobs (count (jobs -p))${commandLineArguments}
|
|
${cfg.extraUpdatePS1}
|
|
end
|
|
'';
|
|
};
|
|
}
|