17 lines
216 B
Nix
17 lines
216 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
options.starship = {
|
|
enable = lib.mkEnableOption "starship prompt";
|
|
};
|
|
|
|
config = lib.mkIf config.starship.enable {
|
|
programs.starship = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|