nixos-config/modules/home/shell/starship.nix
2024-05-19 20:00:58 +02:00

19 lines
417 B
Nix

{ config, lib, ... }:
{
options.myConfig.shell.starship.enable = lib.mkEnableOption "";
config.programs.starship = lib.mkIf config.myConfig.shell.starship.enable {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
settings = {
directory = {
truncation_length = 0;
truncation_symbol = "/";
truncate_to_repo = true;
};
};
};
}