nixos/system/home/terminal.nix
Evie Litherland-Smith 5ee1fe13f6 Force alacritty to use orange and bright orange for yellow and bright yellow respectively
base24 yellow doesn't have a "bright" variant, so switch to orange in alacritty to keep a difference
2025-02-18 07:54:40 +00:00

23 lines
504 B
Nix

{ config, lib, ... }:
{
programs.alacritty = {
enable = true;
settings = {
colors = with config.lib.stylix.colors.withHashtag; {
normal.yellow = lib.mkForce orange;
bright.yellow = lib.mkForce bright-orange;
};
window = {
dynamic_title = true;
padding = {
x = 5;
y = 5;
};
};
general.live_config_reload = true;
selection.save_to_clipboard = true;
mouse.hide_when_typing = true;
};
};
}