17 lines
294 B
Nix
17 lines
294 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
|
|
|