niksos/modules/cli/starship.nix

45 lines
1.4 KiB
Nix
Raw Normal View History

2023-10-13 21:04:24 +02:00
{
config,
lib,
...
2024-05-05 12:38:40 +02:00
}: let
2023-10-13 21:04:24 +02:00
cfg = config.myOptions.programs.starship;
2024-04-14 18:49:29 +02:00
inherit (config.myOptions.other.system) username;
2024-05-05 12:38:40 +02:00
2024-07-24 18:47:53 +02:00
inherit (lib.modules) mkEnableOption mkIf;
2023-10-13 21:04:24 +02:00
in {
2024-04-05 22:59:32 +02:00
options.myOptions.programs.starship.enable = mkEnableOption "starship";
2023-10-13 21:04:24 +02:00
config = mkIf cfg.enable {
home-manager.users.${username} = {
2023-10-13 21:04:24 +02:00
programs.starship = {
enable = true;
enableZshIntegration = config.myOptions.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 = " ";
2023-10-13 21:04:24 +02:00
};
2023-09-08 16:10:15 +02:00
};
};
};
}