infrastructure/home/applications/alacritty.nix
2024-06-15 17:17:27 +02:00

13 lines
208 B
Nix

{...}: {
programs.alacritty = {
enable = true;
settings = {
window.opacity = 0.85;
font = {
normal.family = "FiraCode Nerd Font Mono";
size = 9.5;
};
};
};
}