1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/modules/programs/starship.nix

110 lines
2.9 KiB
Nix
Raw Normal View History

2019-09-08 11:20:00 +02:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.starship;
configFile = config:
2020-02-02 00:39:17 +01:00
pkgs.runCommand "config.toml" {
buildInputs = [ pkgs.remarshal ];
preferLocalBuild = true;
allowSubstitutes = false;
} ''
remarshal -if json -of toml \
< ${pkgs.writeText "config.json" (builtins.toJSON config)} \
> $out
'';
2019-09-08 11:20:00 +02:00
2020-02-02 00:39:17 +01:00
in {
2019-09-08 11:20:00 +02:00
meta.maintainers = [ maintainers.marsam ];
options.programs.starship = {
enable = mkEnableOption "starship";
2019-10-11 11:56:09 +02:00
package = mkOption {
type = types.package;
default = pkgs.starship;
defaultText = literalExample "pkgs.starship";
description = "The package to use for the starship binary.";
};
2019-09-08 11:20:00 +02:00
settings = mkOption {
type = with types;
let
prim = either bool (either int str);
primOrPrimAttrs = either prim (attrsOf prim);
entry = either prim (listOf primOrPrimAttrs);
entryOrAttrsOf = t: either entry (attrsOf t);
entries = entryOrAttrsOf (entryOrAttrsOf entry);
in attrsOf entries // { description = "Starship configuration"; };
2020-02-02 00:39:17 +01:00
default = { };
example = literalExample ''
{
add_newline = false;
prompt_order = [ "line_break" "package" "line_break" "character" ];
scan_timeout = 10;
character.symbol = "";
}
'';
2019-09-08 11:20:00 +02:00
description = ''
Configuration written to
<filename>~/.config/starship.toml</filename>.
</para><para>
See <link xlink:href="https://starship.rs/config/" /> for the full list
of options.
'';
};
enableBashIntegration = mkOption {
default = true;
type = types.bool;
description = ''
Whether to enable Bash integration.
'';
};
enableZshIntegration = mkOption {
default = true;
type = types.bool;
description = ''
Whether to enable Zsh integration.
'';
};
enableFishIntegration = mkOption {
default = true;
type = types.bool;
description = ''
Whether to enable Fish integration.
'';
};
};
config = mkIf cfg.enable {
2019-10-11 11:56:09 +02:00
home.packages = [ cfg.package ];
2019-09-08 11:20:00 +02:00
2020-02-02 00:39:17 +01:00
xdg.configFile."starship.toml" =
mkIf (cfg.settings != { }) { source = configFile cfg.settings; };
2019-09-08 11:20:00 +02:00
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
if [[ $TERM != "dumb" && (-z $INSIDE_EMACS || $INSIDE_EMACS == "vterm") ]]; then
2019-10-11 11:56:09 +02:00
eval "$(${cfg.package}/bin/starship init bash)"
2019-09-08 11:20:00 +02:00
fi
'';
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
if [ -z "$INSIDE_EMACS" ]; then
2019-10-11 11:56:09 +02:00
eval "$(${cfg.package}/bin/starship init zsh)"
2019-09-08 11:20:00 +02:00
fi
'';
2020-02-07 12:47:35 +01:00
programs.fish.promptInit = mkIf cfg.enableFishIntegration ''
if test [[ "$TERM" != "dumb" -a \( -n "$INSIDE_EMACS" -o "$INSIDE_EMACS" == "vterm" \) ]]
2019-10-11 11:56:09 +02:00
eval (${cfg.package}/bin/starship init fish)
2019-10-01 21:21:36 +02:00
end
2019-09-08 11:20:00 +02:00
'';
};
}