{ lib, config, ... }:
{
  options.look.border = lib.mkOption {
    type = lib.types.attrs;
    default = {};
  };

  config.look.border = rec {
    int = 3;
    string = toString int;
  };
}