52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
|
|
colors = with config.colorScheme.palette; {
|
|
bright = {
|
|
black = "0x${base03}";
|
|
blue = "0x${base04}";
|
|
cyan = "0x${base0F}";
|
|
green = "0x${base01}";
|
|
magenta = "0x${base06}";
|
|
red = "0x${base09}";
|
|
white = "0x${base07}";
|
|
yellow = "0x${base02}";
|
|
};
|
|
cursor = {
|
|
cursor = "0x${base05}";
|
|
text = "0x${base00}";
|
|
};
|
|
normal = {
|
|
black = "0x${base00}";
|
|
blue = "0x${base0D}";
|
|
cyan = "0x${base0C}";
|
|
green = "0x${base0B}";
|
|
magenta = "0x${base0E}";
|
|
red = "0x${base08}";
|
|
white = "0x${base05}";
|
|
yellow = "0x${base0A}";
|
|
};
|
|
primary = {
|
|
background = "0x${base00}";
|
|
foreground = "0x${base05}";
|
|
};
|
|
};
|
|
|
|
window = {
|
|
padding = {
|
|
x = 5;
|
|
y = 5;
|
|
};
|
|
blur = true;
|
|
opacity = 0.9;
|
|
};
|
|
|
|
shell.program = "${pkgs.zsh}/bin/zsh";
|
|
|
|
};
|
|
};
|
|
}
|