28 lines
454 B
Nix
28 lines
454 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=15;y=15;};
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|