NixOS-Configs/home/gui/alacritty.nix
2024-12-13 11:50:29 -06:00

17 lines
296 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