mirror of
https://github.com/heyitschloehawthorne/nix-config.git
synced 2025-12-16 03:08:38 +11:00
35 lines
893 B
Nix
35 lines
893 B
Nix
{ pkgs, ... }:
|
|
alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
font.normal.family = "CozetteVector";
|
|
font.bold.family = "CozetteVector";
|
|
font.bold.style = "bold";
|
|
font.size = 12.0;
|
|
colors.primary = {
|
|
background = "0x2D2A2E";
|
|
foreground = "0xfff1f3";
|
|
};
|
|
colors.normal = {
|
|
black = "0x2c2525";
|
|
red = "0xfd6883";
|
|
green = "0xadda78";
|
|
yellow = "0xf9cc6c";
|
|
blue = "0xf38d70";
|
|
magenta = "0xa8a9eb";
|
|
cyan = "0x85dacc";
|
|
white = "0xfff1f3";
|
|
};
|
|
colors.bright = {
|
|
black = "0x72696a";
|
|
red = "0xfd6883";
|
|
green = "0xadda78";
|
|
yellow = "0xf9cc6c";
|
|
blue = "0xf38d70";
|
|
magenta = "0xa8a9eb";
|
|
cyan = "0x85dacc";
|
|
white = "0xfff1f3";
|
|
};
|
|
};
|
|
};
|