FrameworkNix/programs/alacritty.nix

45 lines
861 B
Nix
Raw Normal View History

2024-02-21 15:08:00 +00:00
{ config, ... }:
{
programs.alacritty = {
enable = true;
settings = {
2024-04-08 18:22:35 +00:00
font = {
normal.family = "Anton";
bold.family = "Anton";
italic.family = "Anton";
};
2024-02-21 15:08:00 +00:00
colors = with config.colorScheme.palette; {
bright = {
black = "0x${base00}";
blue = "0x${base0D}";
cyan = "0x${base0C}";
green = "0x${base0B}";
magenta = "0x${base0E}";
red = "0x${base08}";
white = "0x${base06}";
yellow = "0x${base09}";
};
cursor = {
cursor = "0x${base06}";
text = "0x${base06}";
};
normal = {
black = "0x${base00}";
blue = "0x${base0D}";
cyan = "0x${base0C}";
green = "0x${base0B}";
magenta = "0x${base0E}";
red = "0x${base08}";
white = "0x${base06}";
yellow = "0x${base0A}";
};
primary = {
background = "0x${base00}";
foreground = "0x${base06}";
};
};
};
};
}