1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
lib,
pkgs,
config,
...
}:
let
inherit (lib) types;
cfg = config.programs.starship;
settingsFormat = pkgs.formats.toml { };
in
{
options.programs.starship = {
enable = lib.mkEnableOption "starship";
settings = lib.mkOption {
type = settingsFormat.type;
default = { };
};
enableFishIntegration = lib.mkOption {
type = types.bool;
default = config.programs.fish.enable;
};
enableTransience = lib.mkOption {
type = types.bool;
default = false;
};
};
config = lib.mkIf cfg.enable {
packages = [ pkgs.starship ];
environment.sessionVariables.STARSHIP_CONFIG = lib.mkIf (
cfg.settings != { }
) "${cfg.xdg.configDirectory}/starship/config.toml";
programs.fish.config = lib.mkIf cfg.enableFishIntegration (
lib.mkAfter ''
if test "$TERM" != "dumb"
starship init fish | source
${lib.optionalString cfg.enableTransience "enable_transience"}
end
''
);
file.xdg_config."starship/config.toml".source =
settingsFormat.generate "starship-config.toml" cfg.settings;
};
}