NixConfig/modules/nix/wm/i3/alacritty.nix
fqbn207 19e11f4629 kekl
2025-01-14 21:46:52 +01:00

29 lines
498 B
Nix

{ config, pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
window.dimensions = {
lines = 4;
columns = 200;
};
font = {
size = 17;
normal = {
family = "FantasqueSansMono";
style = "Regular";
};
};
terminal = {
shell = "tmux";
};
colors = {
primary = {
foreground = "#FFFFFF";
background = "#161616";
};
};
};
};
}