2019-09-08 11:20:00 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.starship;
|
|
|
|
|
2021-03-13 05:20:00 +01:00
|
|
|
tomlFormat = pkgs.formats.toml { };
|
2019-09-08 11:20:00 +02:00
|
|
|
|
2021-09-19 23:59:45 +02:00
|
|
|
starshipCmd = "${config.home.profileDirectory}/bin/starship";
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2023-06-22 10:16:28 +02:00
|
|
|
meta.maintainers = [ ];
|
2019-09-08 11:20:00 +02:00
|
|
|
|
|
|
|
options.programs.starship = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "starship";
|
2019-09-08 11:20:00 +02:00
|
|
|
|
2019-10-11 11:56:09 +02:00
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.starship;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.starship";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "The package to use for the starship binary.";
|
2019-10-11 11:56:09 +02:00
|
|
|
};
|
|
|
|
|
2019-09-08 11:20:00 +02:00
|
|
|
settings = mkOption {
|
2024-07-06 20:08:39 +02:00
|
|
|
type = tomlFormat.type;
|
2020-02-02 00:39:17 +01:00
|
|
|
default = { };
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2020-02-29 22:17:47 +01:00
|
|
|
{
|
|
|
|
add_newline = false;
|
2020-12-21 21:54:59 +01:00
|
|
|
format = lib.concatStrings [
|
|
|
|
"$line_break"
|
|
|
|
"$package"
|
|
|
|
"$line_break"
|
|
|
|
"$character"
|
|
|
|
];
|
2020-02-29 22:17:47 +01:00
|
|
|
scan_timeout = 10;
|
2021-01-02 21:08:23 +01:00
|
|
|
character = {
|
|
|
|
success_symbol = "➜";
|
|
|
|
error_symbol = "➜";
|
|
|
|
};
|
2020-02-29 22:17:47 +01:00
|
|
|
}
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2019-09-08 11:20:00 +02:00
|
|
|
Configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/starship.toml`.
|
|
|
|
|
|
|
|
See <https://starship.rs/config/> for the full list
|
2019-09-08 11:20:00 +02:00
|
|
|
of options.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2023-07-02 01:45:18 +02:00
|
|
|
enableBashIntegration = mkEnableOption "Bash integration" // {
|
2019-09-08 11:20:00 +02:00
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
2023-07-02 01:45:18 +02:00
|
|
|
enableZshIntegration = mkEnableOption "Zsh integration" // {
|
2019-09-08 11:20:00 +02:00
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
2023-07-02 01:45:18 +02:00
|
|
|
enableFishIntegration = mkEnableOption "Fish integration" // {
|
2019-09-08 11:20:00 +02:00
|
|
|
default = true;
|
|
|
|
};
|
2022-01-27 19:15:45 +01:00
|
|
|
|
2023-07-02 01:45:18 +02:00
|
|
|
enableIonIntegration = mkEnableOption "Ion integration" // {
|
2022-01-27 19:15:45 +01:00
|
|
|
default = true;
|
|
|
|
};
|
2022-10-23 19:12:01 +02:00
|
|
|
|
2023-07-02 01:45:18 +02:00
|
|
|
enableNushellIntegration = mkEnableOption "Nushell integration" // {
|
|
|
|
default = true;
|
|
|
|
};
|
2023-06-19 21:56:48 +02:00
|
|
|
|
|
|
|
enableTransience = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-06-19 21:56:48 +02:00
|
|
|
The TransientPrompt feature of Starship replaces previous prompts with a
|
|
|
|
custom string. This is only a valid option for the Fish shell.
|
|
|
|
|
|
|
|
For documentation on how to change the default replacement string and
|
|
|
|
for more information visit
|
|
|
|
https://starship.rs/advanced-config/#transientprompt-and-transientrightprompt-in-cmd
|
|
|
|
'';
|
|
|
|
};
|
2019-09-08 11:20:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2019-10-11 11:56:09 +02:00
|
|
|
home.packages = [ cfg.package ];
|
2019-09-08 11:20:00 +02:00
|
|
|
|
2021-03-13 05:20:00 +01:00
|
|
|
xdg.configFile."starship.toml" = mkIf (cfg.settings != { }) {
|
|
|
|
source = tomlFormat.generate "starship-config" cfg.settings;
|
|
|
|
};
|
2019-09-08 11:20:00 +02:00
|
|
|
|
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
2023-06-22 10:14:49 +02:00
|
|
|
if [[ $TERM != "dumb" ]]; then
|
2022-04-07 19:36:34 +02:00
|
|
|
eval "$(${starshipCmd} init bash --print-full-init)"
|
2019-09-08 11:20:00 +02:00
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
2023-06-22 10:14:49 +02:00
|
|
|
if [[ $TERM != "dumb" ]]; then
|
2021-09-19 23:59:45 +02:00
|
|
|
eval "$(${starshipCmd} init zsh)"
|
2019-09-08 11:20:00 +02:00
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2021-10-28 00:40:39 +02:00
|
|
|
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration ''
|
2023-06-22 10:14:49 +02:00
|
|
|
if test "$TERM" != "dumb"
|
2021-09-19 23:59:45 +02:00
|
|
|
eval (${starshipCmd} init fish)
|
2023-06-19 21:56:48 +02:00
|
|
|
${lib.optionalString cfg.enableTransience "enable_transience"}
|
2019-10-01 21:21:36 +02:00
|
|
|
end
|
2019-09-08 11:20:00 +02:00
|
|
|
'';
|
2022-01-27 19:15:45 +01:00
|
|
|
|
2022-12-27 13:00:56 +01:00
|
|
|
programs.ion.initExtra = mkIf cfg.enableIonIntegration ''
|
2023-06-22 10:14:49 +02:00
|
|
|
if test $TERM != "dumb"
|
2022-12-27 13:00:56 +01:00
|
|
|
eval $(${starshipCmd} init ion)
|
|
|
|
end
|
|
|
|
'';
|
|
|
|
|
2022-10-23 19:12:01 +02:00
|
|
|
programs.nushell = mkIf cfg.enableNushellIntegration {
|
|
|
|
# Unfortunately nushell doesn't allow conditionally sourcing nor
|
|
|
|
# conditionally setting (global) environment variables, which is why the
|
|
|
|
# check for terminal compatibility (as seen above for the other shells) is
|
|
|
|
# not done here.
|
|
|
|
extraEnv = ''
|
|
|
|
let starship_cache = "${config.xdg.cacheHome}/starship"
|
|
|
|
if not ($starship_cache | path exists) {
|
|
|
|
mkdir $starship_cache
|
|
|
|
}
|
2022-12-24 03:48:22 +01:00
|
|
|
${starshipCmd} init nu | save --force ${config.xdg.cacheHome}/starship/init.nu
|
2022-10-23 19:12:01 +02:00
|
|
|
'';
|
|
|
|
extraConfig = ''
|
2023-09-19 23:14:29 +02:00
|
|
|
use ${config.xdg.cacheHome}/starship/init.nu
|
2022-10-23 19:12:01 +02:00
|
|
|
'';
|
|
|
|
};
|
2019-09-08 11:20:00 +02:00
|
|
|
};
|
|
|
|
}
|