1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/modules/programs/starship.nix

95 lines
2.2 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 = types.attrs;
2020-02-02 00:39:17 +01:00
default = { };
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 ''
2019-10-01 21:56:56 +02:00
if [[ -z $INSIDE_EMACS ]]; 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 ''
2019-10-01 21:21:36 +02:00
if test -z "$INSIDE_EMACS"
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
'';
};
}