infrastructure/home/applications/alacritty.nix

13 lines
208 B
Nix
Raw Normal View History

2024-06-15 14:39:17 +00:00
{...}: {
2023-04-08 13:53:58 +00:00
programs.alacritty = {
enable = true;
settings = {
2023-06-18 12:54:26 +00:00
window.opacity = 0.85;
2023-04-08 13:53:58 +00:00
font = {
normal.family = "FiraCode Nerd Font Mono";
size = 9.5;
};
};
};
}