Files
nixos-conf/home-manager/packages/alacritty/alacritty.nix
2025-08-27 12:34:26 -06:00

27 lines
432 B
Nix

{ config, pkgs, ... }:
{
programs.alacritty = {
enable = true;
theme = "everforest_dark";
settings = {
font = {
italic = {
family = "Hack Nerd Font";
style = "Regular";
};
normal = {
family = "Hack Nerd Font";
style = "Regular";
};
};
window = {
opacity = 0.85;
padding = {x=15;y=15;};
};
};
};
}