45 lines
1.4 KiB
Nix
45 lines
1.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.poz.programs.starship;
|
|
inherit (config.poz.other.system) username;
|
|
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.options) mkEnableOption;
|
|
in {
|
|
options.poz.programs.starship.enable = mkEnableOption "starship";
|
|
|
|
config = mkIf cfg.enable {
|
|
home-manager.users.${username} = {
|
|
programs.starship = {
|
|
enable = true;
|
|
enableZshIntegration = config.poz.programs.zsh.enable;
|
|
settings = {
|
|
add_newline = false;
|
|
command_timeout = 1000;
|
|
line_break = {
|
|
disabled = true;
|
|
};
|
|
directory = {
|
|
truncation_length = 3;
|
|
truncate_to_repo = false;
|
|
truncation_symbol = "…/";
|
|
};
|
|
c.symbol = " ";
|
|
directory.read_only = " ";
|
|
git_branch.symbol = " ";
|
|
haskell.symbol = " ";
|
|
hostname.ssh_symbol = " ";
|
|
java.symbol = " ";
|
|
kotlin.symbol = " ";
|
|
meson.symbol = " ";
|
|
nix_shell.symbol = " ";
|
|
package.symbol = " ";
|
|
rust.symbol = " ";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|