NixOS-Configs/home/gui/alacritty.nix
2024-06-16 21:11:05 -05:00

17 lines
295 B
Nix

{ pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
window = {
decorations = "none";
opacity = 0.75;
};
bell = {
animation = "EaseOutExpo";
duration = 500;
};
};
};
}
# vim: shiftwidth=2 tabstop=2 expandtab