nyx/modules/home-manager/cli/alacritty/default.nix

24 lines
382 B
Nix
Raw Normal View History

{ pkgs, lib, config, ... } :
2024-10-12 23:08:10 +00:00
{
programs.alacritty = {
enable = true;
settings = {
window = {
opacity = 0.9;
dynamic_padding = true;
padding = {
x = 5;
y = 5;
};
};
font = {
normal = {
family = "SpaceMono Nerd Font";
style = "Regular";
};
};
2024-10-12 23:08:10 +00:00
};
};
}