14 lines
257 B
Nix
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
|