{ lib
, ...
}:

with lib;
{
  options.my.shell = {
    abbreviations = mkOption {
      default = { };
      type = with types; attrsOf str;
      example = { gs = "git status"; };
    };
    aliases = mkOption {
      default = { };
      type = with types; attrsOf str;
    };
    variables = mkOption {
      default = { };
      type = with types; attrsOf str;
    };
  };
}