mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 11:15:12 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
113 lines
3.4 KiB
Nix
113 lines
3.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.programs.starship;
|
|
|
|
settingsFormat = pkgs.formats.toml { };
|
|
|
|
userSettingsFile = settingsFormat.generate "starship.toml" cfg.settings;
|
|
|
|
settingsFile =
|
|
if cfg.presets == [ ] then
|
|
userSettingsFile
|
|
else
|
|
pkgs.runCommand "starship.toml"
|
|
{
|
|
nativeBuildInputs = [ pkgs.yq ];
|
|
}
|
|
''
|
|
tomlq -s -t 'reduce .[] as $item ({}; . * $item)' \
|
|
${
|
|
lib.concatStringsSep " " (map (f: "${cfg.package}/share/starship/presets/${f}.toml") cfg.presets)
|
|
} \
|
|
${userSettingsFile} \
|
|
> $out
|
|
'';
|
|
|
|
initOption = if cfg.interactiveOnly then "promptInit" else "shellInit";
|
|
|
|
in
|
|
{
|
|
options.programs.starship = {
|
|
enable = lib.mkEnableOption "the Starship shell prompt";
|
|
|
|
package = lib.mkPackageOption pkgs "starship" { };
|
|
|
|
interactiveOnly =
|
|
lib.mkEnableOption ''
|
|
starship only when the shell is interactive.
|
|
Some plugins require this to be set to false to function correctly
|
|
''
|
|
// {
|
|
default = true;
|
|
};
|
|
|
|
presets = lib.mkOption {
|
|
default = [ ];
|
|
example = [ "nerd-font-symbols" ];
|
|
type = with lib.types; listOf str;
|
|
description = ''
|
|
Presets files to be merged with settings in order.
|
|
'';
|
|
};
|
|
|
|
settings = lib.mkOption {
|
|
inherit (settingsFormat) type;
|
|
default = { };
|
|
description = ''
|
|
Configuration included in `starship.toml`.
|
|
|
|
See https://starship.rs/config/#prompt for documentation.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
programs.bash.${initOption} = ''
|
|
if [[ $TERM != "dumb" ]]; then
|
|
# 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 [[ ! -f "$HOME/.config/starship.toml" ]]; then
|
|
export STARSHIP_CONFIG=${settingsFile}
|
|
fi
|
|
eval "$(${cfg.package}/bin/starship init bash)"
|
|
fi
|
|
'';
|
|
|
|
programs.fish.${initOption} = ''
|
|
if test "$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 test -f "$HOME/.config/starship.toml";
|
|
set -x STARSHIP_CONFIG ${settingsFile}
|
|
end
|
|
eval (${cfg.package}/bin/starship init fish)
|
|
end
|
|
'';
|
|
|
|
programs.zsh.${initOption} = ''
|
|
if [[ $TERM != "dumb" ]]; then
|
|
# 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 [[ ! -f "$HOME/.config/starship.toml" ]]; then
|
|
export STARSHIP_CONFIG=${settingsFile}
|
|
fi
|
|
eval "$(${cfg.package}/bin/starship init zsh)"
|
|
fi
|
|
'';
|
|
};
|
|
|
|
meta.maintainers = pkgs.starship.meta.maintainers;
|
|
}
|