nixos-config/home-manager/modules/starship/default.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
let
cfg = config.eboskma.programs.starship;
in
{
2024-02-05 11:46:52 +01:00
options.eboskma.programs.starship = {
enable = mkEnableOption "starship";
};
config = mkIf cfg.enable {
programs.starship = {
enable = true;
settings = {
aws.disabled = true;
character = {
success_symbol = "[λ](bold #f8f8f2)";
error_symbol = "[λ](bold #ff5555)";
};
cmd_duration.style = "bold #f1fa8c";
2023-05-15 14:28:41 +02:00
directory.read_only = " 󰌾"; # Icon: lock
directory.style = "bold #50fa7b";
docker_context.symbol = " ";
elixir.symbol = " ";
git_branch.symbol = " ";
git_branch.style = "bold #ff79c6";
git_status.style = "bold #ff5555";
hostname.style = "bold #ff5555";
nix_shell.symbol = " ";
2023-05-15 14:28:41 +02:00
memory_usage = {
symbol = "󰍛 "; # Icon: memory
disabled = false;
};
package.symbol = "󰏗 "; # Icon: package_variant_closed
python.symbol = " ";
rust.symbol = " ";
time.disabled = false;
username = {
format = "[$user]($style) on ";
style_user = "bold #bd93f9";
};
status = {
disabled = false;
format = "[$symbol $status]($style) ";
};
};
};
};
}