dotfiles/home-manager/modules/alacritty.nix

35 lines
521 B
Nix
Raw Normal View History

2022-09-27 17:12:25 +00:00
{ config, pkgs, lib, libs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
env = {
TERM = "xterm-256color";
};
font = {
bold = {
style = "Regular";
};
bold_italic = {
style = "Italic";
};
normal = {
family = "JetBrains Mono NL";
style = "Regular";
};
size = 15;
};
window = {
decorations = "full";
dynamic_title = true;
};
};
};
}