starship: add module

This commit is contained in:
Mario Rodas 2019-09-08 04:20:00 -05:00 committed by Robert Helgesson
parent bb5c29107e
commit 7205d3b2d2
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
3 changed files with 99 additions and 0 deletions

View file

@ -1193,6 +1193,13 @@ in
A new module is available: 'services.sxhkd'.
'';
}
{
time = "2019-09-26T21:05:24+00:00";
message = ''
A new module is available: 'programs.starship'.
'';
}
];
};
}

View file

@ -85,6 +85,7 @@ let
(loadModule ./programs/pidgin.nix { })
(loadModule ./programs/rofi.nix { })
(loadModule ./programs/skim.nix { })
(loadModule ./programs/starship.nix { })
(loadModule ./programs/ssh.nix { })
(loadModule ./programs/taskwarrior.nix { })
(loadModule ./programs/termite.nix { })

View file

@ -0,0 +1,91 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.starship;
configFile = config:
pkgs.runCommand "config.toml"
{
buildInputs = [ pkgs.remarshal ];
preferLocalBuild = true;
allowSubstitutes = false;
}
''
remarshal -if json -of toml \
< ${pkgs.writeText "config.json" (builtins.toJSON config)} \
> $out
'';
in
{
meta.maintainers = [ maintainers.marsam ];
options.programs.starship = {
enable = mkEnableOption "starship";
settings = mkOption {
type = types.attrs;
default = {};
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 {
home.packages = [ pkgs.starship ];
xdg.configFile."starship.toml" = mkIf (cfg.settings != {}) {
source = configFile cfg.settings;
};
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
if [ -z "$INSIDE_EMACS" ]; then
eval "$(${pkgs.starship}/bin/starship init bash)"
fi
'';
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
if [ -z "$INSIDE_EMACS" ]; then
eval "$(${pkgs.starship}/bin/starship init zsh)"
fi
'';
programs.fish.shellInit = mkIf cfg.enableFishIntegration ''
if [ -z "$INSIDE_EMACS" ]; then
eval (${pkgs.starship}/bin/starship init fish)
fi
'';
};
}