2021-12-23 22:22:39 +00:00
|
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
cfg = config.programs.starship;
|
|
|
|
|
|
|
|
|
|
settingsFormat = pkgs.formats.toml { };
|
|
|
|
|
|
2023-11-14 20:31:30 +08:00
|
|
|
|
userSettingsFile = settingsFormat.generate "starship.toml" cfg.settings;
|
|
|
|
|
|
|
|
|
|
settingsFile =
|
|
|
|
|
if cfg.presets == [ ] then
|
|
|
|
|
userSettingsFile
|
2023-03-12 21:22:44 -04:00
|
|
|
|
else
|
2023-11-14 20:31:30 +08:00
|
|
|
|
pkgs.runCommand "starship.toml"
|
2024-12-10 20:26:33 +01:00
|
|
|
|
{
|
2023-11-14 20:31:30 +08:00
|
|
|
|
nativeBuildInputs = [ pkgs.yq ];
|
2024-12-10 20:26:33 +01:00
|
|
|
|
}
|
|
|
|
|
''
|
2023-11-14 20:31:30 +08:00
|
|
|
|
tomlq -s -t 'reduce .[] as $item ({}; . * $item)' \
|
2024-12-10 20:26:33 +01:00
|
|
|
|
${
|
2024-03-19 08:59:01 -04:00
|
|
|
|
lib.concatStringsSep " " (map (f: "${cfg.package}/share/starship/presets/${f}.toml") cfg.presets)
|
2024-12-10 20:26:33 +01:00
|
|
|
|
} \
|
2023-11-14 20:31:30 +08:00
|
|
|
|
${userSettingsFile} \
|
2024-12-10 20:26:33 +01:00
|
|
|
|
> $out
|
|
|
|
|
'';
|
|
|
|
|
|
2023-03-12 21:22:44 -04:00
|
|
|
|
initOption = if cfg.interactiveOnly then "promptInit" else "shellInit";
|
|
|
|
|
|
|
|
|
|
in
|
|
|
|
|
{
|
2021-12-23 22:22:39 +00:00
|
|
|
|
options.programs.starship = {
|
2024-03-19 09:01:25 -04:00
|
|
|
|
enable = lib.mkEnableOption "the Starship shell prompt";
|
2021-12-23 22:22:39 +00:00
|
|
|
|
|
2024-03-19 08:59:01 -04:00
|
|
|
|
package = lib.mkPackageOption pkgs "starship" { };
|
|
|
|
|
|
2024-03-19 09:01:25 -04:00
|
|
|
|
interactiveOnly =
|
|
|
|
|
lib.mkEnableOption ''
|
|
|
|
|
starship only when the shell is interactive.
|
|
|
|
|
Some plugins require this to be set to false to function correctly
|
|
|
|
|
''
|
|
|
|
|
// {
|
|
|
|
|
default = true;
|
|
|
|
|
};
|
2023-03-12 21:22:44 -04:00
|
|
|
|
|
2023-11-14 20:31:30 +08:00
|
|
|
|
presets = lib.mkOption {
|
|
|
|
|
default = [ ];
|
|
|
|
|
example = [ "nerd-font-symbols" ];
|
|
|
|
|
type = with lib.types; listOf str;
|
2024-03-19 09:01:25 -04:00
|
|
|
|
description = ''
|
2023-11-14 20:31:30 +08:00
|
|
|
|
Presets files to be merged with settings in order.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
settings = lib.mkOption {
|
2021-12-23 22:22:39 +00:00
|
|
|
|
inherit (settingsFormat) type;
|
|
|
|
|
default = { };
|
2024-03-19 09:01:25 -04:00
|
|
|
|
description = ''
|
2022-07-20 12:32:04 +02:00
|
|
|
|
Configuration included in `starship.toml`.
|
2021-12-23 22:22:39 +00:00
|
|
|
|
|
|
|
|
|
See https://starship.rs/config/#prompt for documentation.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2025-04-20 21:33:09 -03:00
|
|
|
|
|
|
|
|
|
transientPrompt =
|
|
|
|
|
let
|
|
|
|
|
mkTransientPromptOption =
|
|
|
|
|
side:
|
|
|
|
|
lib.mkOption {
|
|
|
|
|
type =
|
|
|
|
|
with lib.types;
|
|
|
|
|
nullOr (str // { description = "Fish shell code concatenated with \"\\n\""; });
|
|
|
|
|
description =
|
|
|
|
|
let
|
|
|
|
|
function = "`starship_transient_${lib.optionalString (side == "right") "r"}prompt_func` function";
|
|
|
|
|
in
|
|
|
|
|
''
|
|
|
|
|
Fish code composing the body of the ${function}. The output of
|
|
|
|
|
this code will become the ${side} side of the transient prompt.
|
|
|
|
|
|
|
|
|
|
Not setting this option (or setting it to `null`) will prevent
|
|
|
|
|
the ${function} from being generated. By default, the ${side}
|
|
|
|
|
prompt is ${if (side == "right") then "empty" else "a bold-green '❯' character"}.
|
|
|
|
|
'';
|
|
|
|
|
example = "starship module ${if (side == "right") then "time" else "character"}";
|
|
|
|
|
default = null;
|
|
|
|
|
};
|
|
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
enable = lib.mkEnableOption ''
|
|
|
|
|
Starship's [transient prompt](https://starship.rs/advanced-config/#transientprompt-and-transientrightprompt-in-fish)
|
|
|
|
|
feature in `fish` shells. After a command has been entered, Starship
|
|
|
|
|
replaces the usual prompt with the terminal output of the commands
|
|
|
|
|
defined in the `programs.starship.transientPrompt.left`
|
|
|
|
|
and `programs.starship.transientPrompt.right` options.
|
|
|
|
|
|
|
|
|
|
This option only works with `fish`, as `bash` requires a
|
|
|
|
|
[custom configuration](https://starship.rs/advanced-config/#transientprompt-and-transientrightprompt-in-bash)
|
|
|
|
|
involving [Ble.sh](https://github.com/akinomyoga/ble.sh), which can be
|
|
|
|
|
enabled with `programs.bash.blesh.enable`, but not configured using NixOS
|
|
|
|
|
'';
|
|
|
|
|
left = mkTransientPromptOption "left";
|
|
|
|
|
right = mkTransientPromptOption "right";
|
|
|
|
|
};
|
2021-12-23 22:22:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-11-14 20:31:30 +08:00
|
|
|
|
config = lib.mkIf cfg.enable {
|
2023-03-12 21:22:44 -04:00
|
|
|
|
programs.bash.${initOption} = ''
|
2023-06-26 12:37:10 -06:00
|
|
|
|
if [[ $TERM != "dumb" ]]; then
|
2023-11-22 11:17:00 -08:00
|
|
|
|
# don't set STARSHIP_CONFIG automatically if there's a user-specified
|
|
|
|
|
# config file. starship appears to use a hardcoded config location
|
|
|
|
|
# rather than one inside an XDG folder:
|
|
|
|
|
# https://github.com/starship/starship/blob/686bda1706e5b409129e6694639477a0f8a3f01b/src/configure.rs#L651
|
2023-11-17 10:59:55 -08:00
|
|
|
|
if [[ ! -f "$HOME/.config/starship.toml" ]]; then
|
|
|
|
|
export STARSHIP_CONFIG=${settingsFile}
|
|
|
|
|
fi
|
2024-03-19 08:59:01 -04:00
|
|
|
|
eval "$(${cfg.package}/bin/starship init bash)"
|
2021-12-23 22:22:39 +00:00
|
|
|
|
fi
|
|
|
|
|
'';
|
|
|
|
|
|
2023-03-12 21:22:44 -04:00
|
|
|
|
programs.fish.${initOption} = ''
|
2023-06-26 12:37:10 -06:00
|
|
|
|
if test "$TERM" != "dumb"
|
2023-11-22 11:17:00 -08:00
|
|
|
|
# don't set STARSHIP_CONFIG automatically if there's a user-specified
|
|
|
|
|
# config file. starship appears to use a hardcoded config location
|
|
|
|
|
# rather than one inside an XDG folder:
|
|
|
|
|
# https://github.com/starship/starship/blob/686bda1706e5b409129e6694639477a0f8a3f01b/src/configure.rs#L651
|
2023-11-17 10:59:55 -08:00
|
|
|
|
if not test -f "$HOME/.config/starship.toml";
|
|
|
|
|
set -x STARSHIP_CONFIG ${settingsFile}
|
|
|
|
|
end
|
2025-04-20 21:33:09 -03:00
|
|
|
|
${lib.optionalString (!isNull cfg.transientPrompt.left) ''
|
|
|
|
|
function starship_transient_prompt_func
|
|
|
|
|
${cfg.transientPrompt.left}
|
|
|
|
|
end
|
|
|
|
|
''}
|
|
|
|
|
${lib.optionalString (!isNull cfg.transientPrompt.right) ''
|
|
|
|
|
function starship_transient_rprompt_func
|
|
|
|
|
${cfg.transientPrompt.right}
|
|
|
|
|
end
|
|
|
|
|
''}
|
2024-03-19 08:59:01 -04:00
|
|
|
|
eval (${cfg.package}/bin/starship init fish)
|
2025-04-20 21:33:09 -03:00
|
|
|
|
${lib.optionalString cfg.transientPrompt.enable "enable_transience"}
|
2021-12-23 22:22:39 +00:00
|
|
|
|
end
|
|
|
|
|
'';
|
|
|
|
|
|
2023-03-12 21:22:44 -04:00
|
|
|
|
programs.zsh.${initOption} = ''
|
2023-06-26 12:37:10 -06:00
|
|
|
|
if [[ $TERM != "dumb" ]]; then
|
2023-11-22 11:17:00 -08:00
|
|
|
|
# don't set STARSHIP_CONFIG automatically if there's a user-specified
|
|
|
|
|
# config file. starship appears to use a hardcoded config location
|
|
|
|
|
# rather than one inside an XDG folder:
|
|
|
|
|
# https://github.com/starship/starship/blob/686bda1706e5b409129e6694639477a0f8a3f01b/src/configure.rs#L651
|
2023-11-17 10:59:55 -08:00
|
|
|
|
if [[ ! -f "$HOME/.config/starship.toml" ]]; then
|
|
|
|
|
export STARSHIP_CONFIG=${settingsFile}
|
|
|
|
|
fi
|
2024-03-19 08:59:01 -04:00
|
|
|
|
eval "$(${cfg.package}/bin/starship init zsh)"
|
2021-12-23 22:22:39 +00:00
|
|
|
|
fi
|
|
|
|
|
'';
|
2025-04-28 01:51:37 -05:00
|
|
|
|
|
|
|
|
|
# use `config` instead of `${initOption}` because `programs.xonsh` doesn't have `shellInit` or `promptInit`
|
|
|
|
|
programs.xonsh.config = ''
|
|
|
|
|
if $TERM != "dumb":
|
|
|
|
|
# don't set STARSHIP_CONFIG automatically if there's a user-specified
|
|
|
|
|
# config file. starship appears to use a hardcoded config location
|
|
|
|
|
# rather than one inside an XDG folder:
|
|
|
|
|
# https://github.com/starship/starship/blob/686bda1706e5b409129e6694639477a0f8a3f01b/src/configure.rs#L651
|
|
|
|
|
if not `$HOME/.config/starship.toml`:
|
|
|
|
|
$STARSHIP_CONFIG = ('${settingsFile}')
|
|
|
|
|
execx($(${cfg.package}/bin/starship init xonsh))
|
|
|
|
|
'';
|
2021-12-23 22:22:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
meta.maintainers = pkgs.starship.meta.maintainers;
|
|
|
|
|
}
|