dotfiles/nix/configs/alacritty.nix

42 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2024-04-28 11:35:35 +02:00
{ pkgs, ... }: {
home-manager.users.grape.programs.alacritty =
{
enable = true;
settings = {
font.normal = {
family = "Jetbrains Mono Nerd font";
style = "Regular";
};
colors = {
primary.background = "0x1E1E3F";
primary.foreground = "0xE1EFFF";
cursor.text = "0x1E1E3F";
cursor.cursor = "0xFAD000";
# Normal colors
normal.black = "0x000000";
normal.red = "0xEC3A37";
normal.green = "0x75e44c";
normal.yellow = "0xFAD000";
normal.blue = "0x6943FF";
normal.magenta = "0xFF2C70";
normal.cyan = "0x80FCFF";
normal.white = "0xFFFFFF";
# Bright colors
bright.black = "0x5C5C61";
bright.red = "0xEC3A37";
bright.green = "0x3AD900";
bright.yellow = "0xFAD000";
bright.blue = "0x6943FF";
bright.magenta = "0xFB94FF";
bright.cyan = "0x80FCFF";
bright.white = "0x2D2B55";
2024-04-28 11:35:35 +02:00
};
};
};
}