NixConfig/hosts/default/home/alacritty.nix
Sojus07 55ee078daf kekl
2025-07-23 05:58:29 +02:00

50 lines
1.0 KiB
Nix

{ config, pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
window.dimensions = {
lines = 4;
columns = 200;
};
font = {
size = 15;
normal = {
family = "TerminessNerdFont";
style = "Regular";
};
};
terminal = {
shell = "tmux";
};
colors = {
primary = {
foreground = "#ffffff";
background = "#000000";
};
normal = {
black = "#000000";
red = "#ffffff";
green = "#ffffff";
yellow = "#ffffff";
blue = "#ffffff";
magenta = "#ffffff";
cyan = "#ffffff";
white = "#ffffff";
};
bright = {
black = "#000000";
red = "#ffffff";
green = "#ffffff";
yellow = "#ffffff";
blue = "#ffffff";
magenta = "#ffffff";
cyan = "#ffffff";
white = "#ffffff";
};
};
};
};
}