{
  config,
  pkgs,
  inputs,
  lib,
  ...
}:
{
  programs.bash = {
    enable = true;
    enableCompletion = true;
    historyIgnore = [
      "ls"
      "cd"
      "pwd"
      "exit"
      "clear"
      "history"
      "eza"
    ];
  };
}