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

12 lines
169 B
Nix
Raw Normal View History

2024-10-12 23:08:10 +00:00
{ pkgs, lib, config } :
{
programs.alacritty = {
enable = true;
settings = {
window.opacity = 0.9;
padding = { x = 5; y = 5; };
};
};
}