NixOS-Configs/home/gui/alacritty.nix
2024-05-19 23:02:23 -05:00

14 lines
257 B
Nix

{ pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
decorations_theme_variant = "dark";
bell = {
animation = "EaseOutExpo";
duration = 500;
};
};
};
}
# vim: shiftwidth=2 tabstop=2 expandtab