Files
nixos-conf/home-manager/packages/alacritty/alacritty.nix
2025-09-02 13:50:53 -06:00

28 lines
451 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.9;
blur = true;
padding = {x=0;y=15;};
};
};
};
}