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

28 lines
385 B
Nix
Raw Normal View History

2024-10-12 23:08:10 +00:00
{
2024-12-20 13:11:42 +00:00
pkgs,
lib,
config,
...
}: {
2024-10-12 23:08:10 +00:00
programs.alacritty = {
enable = true;
2024-12-20 13:11:42 +00:00
2024-10-12 23:08:10 +00:00
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
};
};
}