27 lines
432 B
Nix
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;};
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|