1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/modules/programs/powerline-go.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

200 lines
5.6 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";
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="
}"$(${pkgs.powerline-go}/bin/powerline-go -error $old_exit_status -shell bash${commandLineArguments})"
${cfg.extraUpdatePS1}
return $old_exit_status
}
if [ "$TERM" != "linux" ]; then
PROMPT_COMMAND="_update_ps1;$PROMPT_COMMAND"
fi
'';
programs.zsh.initContent = mkIf (cfg.enable && config.programs.zsh.enable) ''
function powerline_precmd() {
${
if evalMode then "eval " else "PS1="
}"$(${pkgs.powerline-go}/bin/powerline-go -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 ${pkgs.powerline-go}/bin/powerline-go -error $status -jobs (count (jobs -p))${commandLineArguments}
${cfg.extraUpdatePS1}
end
'';
};
}