{
  config,
  pkgs,
  inputs,
  lib,
  ...
}:
{
  programs.alacritty = {
    enable = true;
    settings = {
      font = {
        normal = {
          family = "MesloLGS NF";
          style = "Normal";
        };
        size = 12;
      };
      selection = {
        save_to_clipboard = true;
      };
      window = {
        blur = false;
        decorations = "Full";
        opacity = 0.85;
        decorations_theme_variant = "Dark";
      };
    };
  };
}